summaryrefslogtreecommitdiff
path: root/src/via_vt162x.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/via_vt162x.c')
-rw-r--r--src/via_vt162x.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/via_vt162x.c b/src/via_vt162x.c
index 182baf4..45a9983 100644
--- a/src/via_vt162x.c
+++ b/src/via_vt162x.c
@@ -78,8 +78,8 @@ VT162xPrivateDestroy(struct ViaOutput *Output)
{
struct VT162xOutputPrivate *Private = Output->Private;
- xfree(Private->Regs);
- xfree(Private);
+ free(Private->Regs);
+ free(Private);
Output->PrivateDestroy = NULL;
}
@@ -349,7 +349,7 @@ VT1621TVStandardSet(struct ViaOutput *Output, int Standard)
VIAFUNC(Output);
if (Output->MonitorName)
- xfree(Output->MonitorName);
+ free(Output->MonitorName);
Private->Standard = Standard;
@@ -447,7 +447,7 @@ VT1622TVStandardSet(struct ViaOutput *Output, int Standard)
VIAFUNC(Output);
if (Output->MonitorName)
- xfree(Output->MonitorName);
+ free(Output->MonitorName);
Private->Standard = Standard;
@@ -495,7 +495,7 @@ VT1623TVStandardSet(struct ViaOutput *Output, int Standard)
VIAFUNC(Output);
if (Output->MonitorName)
- xfree(Output->MonitorName);
+ free(Output->MonitorName);
Private->Standard = Standard;
@@ -856,7 +856,7 @@ ViaVT162xInit(int scrnIndex, I2CDevPtr pDev)
Output->PrivateDestroy(Output);
- xfree(Output->Options);
- xfree(Output);
+ free(Output->Options);
+ free(Output);
return NULL;
}