summaryrefslogtreecommitdiff
path: root/linux-core/dvo_tfp410.c
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2008-07-07 11:56:59 -0400
committerKristian Høgsberg <krh@redhat.com>2008-07-07 12:04:35 -0400
commit7fd8a5de63781f6faa053509c80e02e8f1cdbb69 (patch)
treebd605bf5472254fc0d614084401f4e777de80ef2 /linux-core/dvo_tfp410.c
parentf58e21c7d056017340dc0ecac7e53dee2b33fe3b (diff)
Use lowercase bool constants.
Diffstat (limited to 'linux-core/dvo_tfp410.c')
-rw-r--r--linux-core/dvo_tfp410.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux-core/dvo_tfp410.c b/linux-core/dvo_tfp410.c
index c1d1aa96..65b76c86 100644
--- a/linux-core/dvo_tfp410.c
+++ b/linux-core/dvo_tfp410.c
@@ -187,7 +187,7 @@ static bool tfp410_init(struct intel_dvo_device *dvo,
dvo->i2c_bus = i2cbus;
dvo->i2c_bus->slave_addr = dvo->slave_addr;
dvo->dev_priv = tfp;
- tfp->quiet = TRUE;
+ tfp->quiet = true;
if ((id = tfp410_getid(dvo, TFP410_VID_LO)) != TFP410_VID) {
DRM_DEBUG("tfp410 not detected got VID %X: from %s Slave %d.\n",
@@ -200,7 +200,7 @@ static bool tfp410_init(struct intel_dvo_device *dvo,
id, i2cbus->adapter.name, i2cbus->slave_addr);
goto out;
}
- tfp->quiet = FALSE;
+ tfp->quiet = false;
return true;
out:
kfree(tfp);