diff options
author | Wolfram Sang <w.sang@pengutronix.de> | 2008-11-17 14:35:44 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-01-08 12:38:57 +0000 |
commit | e2387d6c20752ccdb2895ba5de664fa39652f4cc (patch) | |
tree | 90d19b17b82f94fae529dfc2250f93ecbfb86cd0 /include/linux/leds.h | |
parent | 0d73357910f0c2f35220329bd6c476afa558280c (diff) | |
download | linux-3.10-e2387d6c20752ccdb2895ba5de664fa39652f4cc.tar.gz linux-3.10-e2387d6c20752ccdb2895ba5de664fa39652f4cc.tar.bz2 linux-3.10-e2387d6c20752ccdb2895ba5de664fa39652f4cc.zip |
leds: Make header variable naming consistent
There is one place where the struct led_classdev as the function
argument is named differently. Fix it.
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'include/linux/leds.h')
-rw-r--r-- | include/linux/leds.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/leds.h b/include/linux/leds.h index d3a73f5a48c..3c1a8ce6a5e 100644 --- a/include/linux/leds.h +++ b/include/linux/leds.h @@ -62,7 +62,7 @@ struct led_classdev { extern int led_classdev_register(struct device *parent, struct led_classdev *led_cdev); -extern void led_classdev_unregister(struct led_classdev *lcd); +extern void led_classdev_unregister(struct led_classdev *led_cdev); extern void led_classdev_suspend(struct led_classdev *led_cdev); extern void led_classdev_resume(struct led_classdev *led_cdev); |