summaryrefslogtreecommitdiff
path: root/hw/xfree86/i2c/tda8425.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/xfree86/i2c/tda8425.c')
-rw-r--r--hw/xfree86/i2c/tda8425.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/xfree86/i2c/tda8425.c b/hw/xfree86/i2c/tda8425.c
index 7631a0863..598f88b59 100644
--- a/hw/xfree86/i2c/tda8425.c
+++ b/hw/xfree86/i2c/tda8425.c
@@ -17,7 +17,7 @@ TDA8425Ptr Detect_tda8425(I2CBusPtr b, I2CSlaveAddr addr, Bool force)
{
TDA8425Ptr t;
- t = xcalloc(1, sizeof(TDA8425Rec));
+ t = calloc(1, sizeof(TDA8425Rec));
if(t == NULL) return NULL;
t->d.DevName = "TDA8425 BTSC Stereo Audio Processor";
t->d.SlaveAddr = addr;
@@ -30,14 +30,14 @@ TDA8425Ptr Detect_tda8425(I2CBusPtr b, I2CSlaveAddr addr, Bool force)
if(!force && !I2CProbeAddress(b, addr))
{
- xfree(t);
+ free(t);
return NULL;
}
/* set default parameters */
if(!I2CDevInit(&(t->d)))
{
- xfree(t);
+ free(t);
return NULL;
}