Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * LCD Lowlevel Control Abstraction |
| 3 | * |
| 4 | * Copyright (C) 2003,2004 Hewlett-Packard Company |
| 5 | * |
| 6 | */ |
| 7 | |
Jingoo Han | 35f9616 | 2012-05-29 15:07:16 -0700 | [diff] [blame] | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/module.h> |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/device.h> |
| 13 | #include <linux/lcd.h> |
| 14 | #include <linux/notifier.h> |
| 15 | #include <linux/ctype.h> |
| 16 | #include <linux/err.h> |
| 17 | #include <linux/fb.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 18 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 20 | #if defined(CONFIG_FB) || (defined(CONFIG_FB_MODULE) && \ |
| 21 | defined(CONFIG_LCD_CLASS_DEVICE_MODULE)) |
| 22 | /* This callback gets called when something important happens inside a |
| 23 | * framebuffer driver. We're looking if that important event is blanking, |
| 24 | * and if it is, we're switching lcd power as well ... |
| 25 | */ |
| 26 | static int fb_notifier_callback(struct notifier_block *self, |
| 27 | unsigned long event, void *data) |
| 28 | { |
| 29 | struct lcd_device *ld; |
| 30 | struct fb_event *evdata = data; |
| 31 | |
| 32 | /* If we aren't interested in this event, skip it immediately ... */ |
Eric Miao | faa312d | 2008-08-29 04:18:43 +0800 | [diff] [blame] | 33 | switch (event) { |
| 34 | case FB_EVENT_BLANK: |
| 35 | case FB_EVENT_MODE_CHANGE: |
| 36 | case FB_EVENT_MODE_CHANGE_ALL: |
Inki Dae | d54ad83 | 2012-05-29 15:07:13 -0700 | [diff] [blame] | 37 | case FB_EARLY_EVENT_BLANK: |
| 38 | case FB_R_EARLY_EVENT_BLANK: |
Eric Miao | faa312d | 2008-08-29 04:18:43 +0800 | [diff] [blame] | 39 | break; |
| 40 | default: |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 41 | return 0; |
Eric Miao | faa312d | 2008-08-29 04:18:43 +0800 | [diff] [blame] | 42 | } |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 43 | |
| 44 | ld = container_of(self, struct lcd_device, fb_notif); |
Eric Miao | faa312d | 2008-08-29 04:18:43 +0800 | [diff] [blame] | 45 | if (!ld->ops) |
| 46 | return 0; |
| 47 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 48 | mutex_lock(&ld->ops_lock); |
Eric Miao | faa312d | 2008-08-29 04:18:43 +0800 | [diff] [blame] | 49 | if (!ld->ops->check_fb || ld->ops->check_fb(ld, evdata->info)) { |
Ben Dooks | b3b4dc8 | 2008-11-19 15:36:25 -0800 | [diff] [blame] | 50 | if (event == FB_EVENT_BLANK) { |
| 51 | if (ld->ops->set_power) |
| 52 | ld->ops->set_power(ld, *(int *)evdata->data); |
Inki Dae | d54ad83 | 2012-05-29 15:07:13 -0700 | [diff] [blame] | 53 | } else if (event == FB_EARLY_EVENT_BLANK) { |
| 54 | if (ld->ops->early_set_power) |
| 55 | ld->ops->early_set_power(ld, |
| 56 | *(int *)evdata->data); |
| 57 | } else if (event == FB_R_EARLY_EVENT_BLANK) { |
| 58 | if (ld->ops->r_early_set_power) |
| 59 | ld->ops->r_early_set_power(ld, |
| 60 | *(int *)evdata->data); |
Ben Dooks | b3b4dc8 | 2008-11-19 15:36:25 -0800 | [diff] [blame] | 61 | } else { |
| 62 | if (ld->ops->set_mode) |
| 63 | ld->ops->set_mode(ld, evdata->data); |
| 64 | } |
Eric Miao | faa312d | 2008-08-29 04:18:43 +0800 | [diff] [blame] | 65 | } |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 66 | mutex_unlock(&ld->ops_lock); |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 67 | return 0; |
| 68 | } |
| 69 | |
| 70 | static int lcd_register_fb(struct lcd_device *ld) |
| 71 | { |
Jean Delvare | 1e0fa6b | 2009-10-02 11:28:18 +0200 | [diff] [blame] | 72 | memset(&ld->fb_notif, 0, sizeof(ld->fb_notif)); |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 73 | ld->fb_notif.notifier_call = fb_notifier_callback; |
| 74 | return fb_register_client(&ld->fb_notif); |
| 75 | } |
| 76 | |
| 77 | static void lcd_unregister_fb(struct lcd_device *ld) |
| 78 | { |
| 79 | fb_unregister_client(&ld->fb_notif); |
| 80 | } |
| 81 | #else |
| 82 | static int lcd_register_fb(struct lcd_device *ld) |
| 83 | { |
| 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | static inline void lcd_unregister_fb(struct lcd_device *ld) |
| 88 | { |
| 89 | } |
| 90 | #endif /* CONFIG_FB */ |
| 91 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 92 | static ssize_t lcd_show_power(struct device *dev, struct device_attribute *attr, |
| 93 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | { |
| 95 | int rc; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 96 | struct lcd_device *ld = to_lcd_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 98 | mutex_lock(&ld->ops_lock); |
| 99 | if (ld->ops && ld->ops->get_power) |
| 100 | rc = sprintf(buf, "%d\n", ld->ops->get_power(ld)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | else |
| 102 | rc = -ENXIO; |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 103 | mutex_unlock(&ld->ops_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
| 105 | return rc; |
| 106 | } |
| 107 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 108 | static ssize_t lcd_store_power(struct device *dev, |
| 109 | struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { |
Jingoo Han | 424e06e | 2012-12-17 16:01:10 -0800 | [diff] [blame] | 111 | int rc; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 112 | struct lcd_device *ld = to_lcd_device(dev); |
Jingoo Han | 6665576 | 2012-01-10 15:09:19 -0800 | [diff] [blame] | 113 | unsigned long power; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Jingoo Han | 6665576 | 2012-01-10 15:09:19 -0800 | [diff] [blame] | 115 | rc = kstrtoul(buf, 0, &power); |
| 116 | if (rc) |
| 117 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Jingoo Han | 424e06e | 2012-12-17 16:01:10 -0800 | [diff] [blame] | 119 | rc = -ENXIO; |
| 120 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 121 | mutex_lock(&ld->ops_lock); |
| 122 | if (ld->ops && ld->ops->set_power) { |
Jingoo Han | 35f9616 | 2012-05-29 15:07:16 -0700 | [diff] [blame] | 123 | pr_debug("set power to %lu\n", power); |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 124 | ld->ops->set_power(ld, power); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | rc = count; |
Richard Purdie | 68673af | 2006-05-15 09:44:15 -0700 | [diff] [blame] | 126 | } |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 127 | mutex_unlock(&ld->ops_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
| 129 | return rc; |
| 130 | } |
| 131 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 132 | static ssize_t lcd_show_contrast(struct device *dev, |
| 133 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | { |
Richard Purdie | 68673af | 2006-05-15 09:44:15 -0700 | [diff] [blame] | 135 | int rc = -ENXIO; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 136 | struct lcd_device *ld = to_lcd_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 138 | mutex_lock(&ld->ops_lock); |
| 139 | if (ld->ops && ld->ops->get_contrast) |
| 140 | rc = sprintf(buf, "%d\n", ld->ops->get_contrast(ld)); |
| 141 | mutex_unlock(&ld->ops_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | return rc; |
| 144 | } |
| 145 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 146 | static ssize_t lcd_store_contrast(struct device *dev, |
| 147 | struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | { |
Jingoo Han | 424e06e | 2012-12-17 16:01:10 -0800 | [diff] [blame] | 149 | int rc; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 150 | struct lcd_device *ld = to_lcd_device(dev); |
Jingoo Han | 6665576 | 2012-01-10 15:09:19 -0800 | [diff] [blame] | 151 | unsigned long contrast; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
Jingoo Han | 6665576 | 2012-01-10 15:09:19 -0800 | [diff] [blame] | 153 | rc = kstrtoul(buf, 0, &contrast); |
| 154 | if (rc) |
| 155 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Jingoo Han | 424e06e | 2012-12-17 16:01:10 -0800 | [diff] [blame] | 157 | rc = -ENXIO; |
| 158 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 159 | mutex_lock(&ld->ops_lock); |
| 160 | if (ld->ops && ld->ops->set_contrast) { |
Jingoo Han | 35f9616 | 2012-05-29 15:07:16 -0700 | [diff] [blame] | 161 | pr_debug("set contrast to %lu\n", contrast); |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 162 | ld->ops->set_contrast(ld, contrast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | rc = count; |
Richard Purdie | 68673af | 2006-05-15 09:44:15 -0700 | [diff] [blame] | 164 | } |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 165 | mutex_unlock(&ld->ops_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
| 167 | return rc; |
| 168 | } |
| 169 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 170 | static ssize_t lcd_show_max_contrast(struct device *dev, |
| 171 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | { |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 173 | struct lcd_device *ld = to_lcd_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 175 | return sprintf(buf, "%d\n", ld->props.max_contrast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | } |
| 177 | |
Adrian Bunk | 0ad90ef | 2007-08-11 10:27:19 +0100 | [diff] [blame] | 178 | static struct class *lcd_class; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 179 | |
| 180 | static void lcd_device_release(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | { |
| 182 | struct lcd_device *ld = to_lcd_device(dev); |
| 183 | kfree(ld); |
| 184 | } |
| 185 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 186 | static struct device_attribute lcd_device_attributes[] = { |
| 187 | __ATTR(lcd_power, 0644, lcd_show_power, lcd_store_power), |
| 188 | __ATTR(contrast, 0644, lcd_show_contrast, lcd_store_contrast), |
| 189 | __ATTR(max_contrast, 0444, lcd_show_max_contrast, NULL), |
| 190 | __ATTR_NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | }; |
| 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | /** |
| 194 | * lcd_device_register - register a new object of lcd_device class. |
| 195 | * @name: the name of the new object(must be the same as the name of the |
| 196 | * respective framebuffer device). |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 197 | * @devdata: an optional pointer to be stored in the device. The |
| 198 | * methods may retrieve it by using lcd_get_data(ld). |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 199 | * @ops: the lcd operations structure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | * |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 201 | * Creates and registers a new lcd device. Returns either an ERR_PTR() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | * or a pointer to the newly allocated device. |
| 203 | */ |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 204 | struct lcd_device *lcd_device_register(const char *name, struct device *parent, |
| 205 | void *devdata, struct lcd_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | struct lcd_device *new_ld; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 208 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
| 210 | pr_debug("lcd_device_register: name=%s\n", name); |
| 211 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 212 | new_ld = kzalloc(sizeof(struct lcd_device), GFP_KERNEL); |
Dmitry Torokhov | 90968e8 | 2007-02-08 00:12:28 +0000 | [diff] [blame] | 213 | if (!new_ld) |
Jean Delvare | 10ad1b7 | 2006-03-09 17:33:36 -0800 | [diff] [blame] | 214 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 216 | mutex_init(&new_ld->ops_lock); |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 217 | mutex_init(&new_ld->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 219 | new_ld->dev.class = lcd_class; |
| 220 | new_ld->dev.parent = parent; |
| 221 | new_ld->dev.release = lcd_device_release; |
Kay Sievers | 64dba9a | 2009-01-06 10:44:35 -0800 | [diff] [blame] | 222 | dev_set_name(&new_ld->dev, name); |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 223 | dev_set_drvdata(&new_ld->dev, devdata); |
| 224 | |
| 225 | rc = device_register(&new_ld->dev); |
Dmitry Torokhov | 90968e8 | 2007-02-08 00:12:28 +0000 | [diff] [blame] | 226 | if (rc) { |
Dmitry Torokhov | 2fd5a15 | 2007-02-07 22:25:50 +0000 | [diff] [blame] | 227 | kfree(new_ld); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | return ERR_PTR(rc); |
| 229 | } |
| 230 | |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 231 | rc = lcd_register_fb(new_ld); |
Dmitry Torokhov | 2fd5a15 | 2007-02-07 22:25:50 +0000 | [diff] [blame] | 232 | if (rc) { |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 233 | device_unregister(&new_ld->dev); |
Dmitry Torokhov | 2fd5a15 | 2007-02-07 22:25:50 +0000 | [diff] [blame] | 234 | return ERR_PTR(rc); |
| 235 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 237 | new_ld->ops = ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
| 239 | return new_ld; |
| 240 | } |
| 241 | EXPORT_SYMBOL(lcd_device_register); |
| 242 | |
| 243 | /** |
| 244 | * lcd_device_unregister - unregisters a object of lcd_device class. |
| 245 | * @ld: the lcd device object to be unregistered and freed. |
| 246 | * |
| 247 | * Unregisters a previously registered via lcd_device_register object. |
| 248 | */ |
| 249 | void lcd_device_unregister(struct lcd_device *ld) |
| 250 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | if (!ld) |
| 252 | return; |
| 253 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 254 | mutex_lock(&ld->ops_lock); |
| 255 | ld->ops = NULL; |
| 256 | mutex_unlock(&ld->ops_lock); |
James Simmons | 3d5eead | 2006-12-08 02:40:47 -0800 | [diff] [blame] | 257 | lcd_unregister_fb(ld); |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 258 | |
| 259 | device_unregister(&ld->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | } |
| 261 | EXPORT_SYMBOL(lcd_device_unregister); |
| 262 | |
| 263 | static void __exit lcd_class_exit(void) |
| 264 | { |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 265 | class_destroy(lcd_class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | static int __init lcd_class_init(void) |
| 269 | { |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 270 | lcd_class = class_create(THIS_MODULE, "lcd"); |
| 271 | if (IS_ERR(lcd_class)) { |
Jingoo Han | 35f9616 | 2012-05-29 15:07:16 -0700 | [diff] [blame] | 272 | pr_warn("Unable to create backlight class; errno = %ld\n", |
| 273 | PTR_ERR(lcd_class)); |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 274 | return PTR_ERR(lcd_class); |
| 275 | } |
| 276 | |
| 277 | lcd_class->dev_attrs = lcd_device_attributes; |
| 278 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | /* |
| 282 | * if this is compiled into the kernel, we need to ensure that the |
| 283 | * class is registered before users of the class try to register lcd's |
| 284 | */ |
| 285 | postcore_initcall(lcd_class_init); |
| 286 | module_exit(lcd_class_exit); |
| 287 | |
| 288 | MODULE_LICENSE("GPL"); |
| 289 | MODULE_AUTHOR("Jamey Hicks <jamey.hicks@hp.com>, Andrew Zabolotny <zap@homelink.ru>"); |
| 290 | MODULE_DESCRIPTION("LCD Lowlevel Control Abstraction"); |