Remove more DVO probing noise.

This commit is contained in:
Eric Anholt 2007-10-01 14:32:28 -07:00
parent 29d3188ee9
commit 1b83e5e589
3 changed files with 5 additions and 9 deletions

View File

@ -94,8 +94,6 @@ ch7017_init(I2CBusPtr b, I2CSlaveAddr addr)
struct ch7017_priv *priv;
CARD8 val;
xf86DrvMsg(b->scrnIndex, X_INFO, "detecting ch7017\n");
priv = xcalloc(1, sizeof(struct ch7017_priv));
if (priv == NULL)
return NULL;

View File

@ -81,8 +81,6 @@ sil164_init(I2CBusPtr b, I2CSlaveAddr addr)
SIL164Ptr sil;
unsigned char ch;
xf86DrvMsg(b->scrnIndex, X_ERROR, "detecting sil164\n");
sil = xcalloc(1, sizeof(SIL164Rec));
if (sil == NULL)
return NULL;

View File

@ -93,8 +93,6 @@ tfp410_init(I2CBusPtr b, I2CSlaveAddr addr)
TFP410Ptr tfp;
int id;
xf86DrvMsg(b->scrnIndex, X_INFO, "detecting tfp410\n");
tfp = xcalloc(1, sizeof(TFP410Rec));
if (tfp == NULL)
return NULL;
@ -110,9 +108,11 @@ tfp410_init(I2CBusPtr b, I2CSlaveAddr addr)
tfp->quiet = TRUE;
if ((id = tfp410GetID(tfp, TFP410_VID_LO)) != TFP410_VID) {
xf86DrvMsg(tfp->d.pI2CBus->scrnIndex, X_ERROR,
"tfp410 not detected got VID %X: from %s Slave %d.\n",
id, tfp->d.pI2CBus->BusName, tfp->d.SlaveAddr);
if (id != 0xffffffff) {
xf86DrvMsg(tfp->d.pI2CBus->scrnIndex, X_ERROR,
"tfp410 not detected got VID %X: from %s Slave %d.\n",
id, tfp->d.pI2CBus->BusName, tfp->d.SlaveAddr);
}
goto out;
}