vmwgfx: Fix assignment in vmw_framebuffer_create_handle
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / leds / leds-s3c24xx.c
blob29f8b0f0e2c6f880429aea67bcddee59f52f6b91
1 /* drivers/leds/leds-s3c24xx.c
3 * (c) 2006 Simtec Electronics
4 * http://armlinux.simtec.co.uk/
5 * Ben Dooks <ben@simtec.co.uk>
7 * S3C24XX - LEDs GPIO driver
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/platform_device.h>
17 #include <linux/leds.h>
18 #include <linux/gpio.h>
19 #include <linux/slab.h>
20 #include <linux/module.h>
22 #include <mach/hardware.h>
23 #include <mach/regs-gpio.h>
24 #include <mach/leds-gpio.h>
26 /* our context */
28 struct s3c24xx_gpio_led {
29 struct led_classdev cdev;
30 struct s3c24xx_led_platdata *pdata;
33 static inline struct s3c24xx_gpio_led *pdev_to_gpio(struct platform_device *dev)
35 return platform_get_drvdata(dev);
38 static inline struct s3c24xx_gpio_led *to_gpio(struct led_classdev *led_cdev)
40 return container_of(led_cdev, struct s3c24xx_gpio_led, cdev);
43 static void s3c24xx_led_set(struct led_classdev *led_cdev,
44 enum led_brightness value)
46 struct s3c24xx_gpio_led *led = to_gpio(led_cdev);
47 struct s3c24xx_led_platdata *pd = led->pdata;
49 /* there will be a short delay between setting the output and
50 * going from output to input when using tristate. */
52 s3c2410_gpio_setpin(pd->gpio, (value ? 1 : 0) ^
53 (pd->flags & S3C24XX_LEDF_ACTLOW));
55 if (pd->flags & S3C24XX_LEDF_TRISTATE)
56 s3c2410_gpio_cfgpin(pd->gpio,
57 value ? S3C2410_GPIO_OUTPUT : S3C2410_GPIO_INPUT);
61 static int s3c24xx_led_remove(struct platform_device *dev)
63 struct s3c24xx_gpio_led *led = pdev_to_gpio(dev);
65 led_classdev_unregister(&led->cdev);
66 kfree(led);
68 return 0;
71 static int s3c24xx_led_probe(struct platform_device *dev)
73 struct s3c24xx_led_platdata *pdata = dev->dev.platform_data;
74 struct s3c24xx_gpio_led *led;
75 int ret;
77 led = kzalloc(sizeof(struct s3c24xx_gpio_led), GFP_KERNEL);
78 if (led == NULL) {
79 dev_err(&dev->dev, "No memory for device\n");
80 return -ENOMEM;
83 platform_set_drvdata(dev, led);
85 led->cdev.brightness_set = s3c24xx_led_set;
86 led->cdev.default_trigger = pdata->def_trigger;
87 led->cdev.name = pdata->name;
88 led->cdev.flags |= LED_CORE_SUSPENDRESUME;
90 led->pdata = pdata;
92 /* no point in having a pull-up if we are always driving */
94 if (pdata->flags & S3C24XX_LEDF_TRISTATE) {
95 s3c2410_gpio_setpin(pdata->gpio, 0);
96 s3c2410_gpio_cfgpin(pdata->gpio, S3C2410_GPIO_INPUT);
97 } else {
98 s3c2410_gpio_pullup(pdata->gpio, 0);
99 s3c2410_gpio_setpin(pdata->gpio, 0);
100 s3c2410_gpio_cfgpin(pdata->gpio, S3C2410_GPIO_OUTPUT);
103 /* register our new led device */
105 ret = led_classdev_register(&dev->dev, &led->cdev);
106 if (ret < 0) {
107 dev_err(&dev->dev, "led_classdev_register failed\n");
108 kfree(led);
109 return ret;
112 return 0;
115 static struct platform_driver s3c24xx_led_driver = {
116 .probe = s3c24xx_led_probe,
117 .remove = s3c24xx_led_remove,
118 .driver = {
119 .name = "s3c24xx_led",
120 .owner = THIS_MODULE,
124 static int __init s3c24xx_led_init(void)
126 return platform_driver_register(&s3c24xx_led_driver);
129 static void __exit s3c24xx_led_exit(void)
131 platform_driver_unregister(&s3c24xx_led_driver);
134 module_init(s3c24xx_led_init);
135 module_exit(s3c24xx_led_exit);
137 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
138 MODULE_DESCRIPTION("S3C24XX LED driver");
139 MODULE_LICENSE("GPL");
140 MODULE_ALIAS("platform:s3c24xx_led");