summaryrefslogtreecommitdiffstats
path: root/include/linux/lcd.h
diff options
context:
space:
mode:
authorRichard Purdie2007-02-08 23:53:55 +0100
committerRichard Purdie2007-02-20 09:38:45 +0100
commit249040dc7fd391186f420fe23a9b59d357103cac (patch)
treefa62127c1a66e752ff5f32aa53c3d986022e0851 /include/linux/lcd.h
parentbacklight: Fix external uses of backlight internal semaphore (diff)
downloadkernel-qcow2-linux-249040dc7fd391186f420fe23a9b59d357103cac.tar.gz
kernel-qcow2-linux-249040dc7fd391186f420fe23a9b59d357103cac.tar.xz
kernel-qcow2-linux-249040dc7fd391186f420fe23a9b59d357103cac.zip
backlight: Convert semaphore -> mutex
Convert internal semaphore to a mutex Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
Diffstat (limited to 'include/linux/lcd.h')
-rw-r--r--include/linux/lcd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/lcd.h b/include/linux/lcd.h
index bfbf6552eb51..46970af2ca89 100644
--- a/include/linux/lcd.h
+++ b/include/linux/lcd.h
@@ -14,7 +14,7 @@
/* Notes on locking:
*
- * lcd_device->sem is an internal backlight lock protecting the props
+ * lcd_device->props_lock is an internal backlight lock protecting the props
* field and no code outside the core should need to touch it.
*
* Access to set_power() is serialised by the update_lock mutex since
@@ -52,7 +52,7 @@ struct lcd_device {
/* This protects the 'props' field. If 'props' is NULL, the driver that
registered this device has been unloaded, and if class_get_devdata()
points to something in the body of that driver, it is also invalid. */
- struct semaphore sem;
+ struct mutex props_lock;
/* If this is NULL, the backing module is unloaded */
struct lcd_properties *props;
/* Serialise access to set_power method */