Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | Copyright (C) 2001-2004 Aurelien Jarno <aurelien@aurel32.net> |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 3 | Ported to Linux 2.6 by Aurelien Jarno <aurelien@aurel32.net> with |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | the help of Jean Delvare <khali@linux-fr.org> |
| 5 | |
| 6 | This program is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation; either version 2 of the License, or |
| 9 | (at your option) any later version. |
| 10 | |
| 11 | This program is distributed in the hope that it will be useful, |
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | GNU General Public License for more details. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | along with this program; if not, write to the Free Software |
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | */ |
| 20 | |
| 21 | #include <linux/module.h> |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/slab.h> |
| 24 | #include <linux/i2c.h> |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 25 | #include <linux/mutex.h> |
Jean Delvare | 4275fcd | 2010-10-28 20:31:49 +0200 | [diff] [blame^] | 26 | #include <linux/err.h> |
| 27 | #include <linux/hwmon.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | /* Addresses to scan */ |
Jean Delvare | 2cdddeb | 2008-01-27 18:14:47 +0100 | [diff] [blame] | 30 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | 0x4d, 0x4e, 0x4f, I2C_CLIENT_END }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | /* Insmod parameters */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | static int input_mode; |
| 36 | module_param(input_mode, int, 0); |
| 37 | MODULE_PARM_DESC(input_mode, |
| 38 | "Analog input mode:\n" |
| 39 | " 0 = four single ended inputs\n" |
| 40 | " 1 = three differential inputs\n" |
| 41 | " 2 = single ended and differential mixed\n" |
| 42 | " 3 = two differential inputs\n"); |
| 43 | |
| 44 | /* The PCF8591 control byte |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 45 | 7 6 5 4 3 2 1 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | | 0 |AOEF| AIP | 0 |AINC| AICH | */ |
| 47 | |
| 48 | /* Analog Output Enable Flag (analog output active if 1) */ |
| 49 | #define PCF8591_CONTROL_AOEF 0x40 |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 50 | |
| 51 | /* Analog Input Programming |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | 0x00 = four single ended inputs |
| 53 | 0x10 = three differential inputs |
| 54 | 0x20 = single ended and differential mixed |
| 55 | 0x30 = two differential inputs */ |
| 56 | #define PCF8591_CONTROL_AIP_MASK 0x30 |
| 57 | |
| 58 | /* Autoincrement Flag (switch on if 1) */ |
| 59 | #define PCF8591_CONTROL_AINC 0x04 |
| 60 | |
| 61 | /* Channel selection |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 62 | 0x00 = channel 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | 0x01 = channel 1 |
| 64 | 0x02 = channel 2 |
| 65 | 0x03 = channel 3 */ |
| 66 | #define PCF8591_CONTROL_AICH_MASK 0x03 |
| 67 | |
| 68 | /* Initial values */ |
| 69 | #define PCF8591_INIT_CONTROL ((input_mode << 4) | PCF8591_CONTROL_AOEF) |
| 70 | #define PCF8591_INIT_AOUT 0 /* DAC out = 0 */ |
| 71 | |
| 72 | /* Conversions */ |
| 73 | #define REG_TO_SIGNED(reg) (((reg) & 0x80)?((reg) - 256):(reg)) |
| 74 | |
| 75 | struct pcf8591_data { |
Jean Delvare | 4275fcd | 2010-10-28 20:31:49 +0200 | [diff] [blame^] | 76 | struct device *hwmon_dev; |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 77 | struct mutex update_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
| 79 | u8 control; |
| 80 | u8 aout; |
| 81 | }; |
| 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | static void pcf8591_init_client(struct i2c_client *client); |
| 84 | static int pcf8591_read_channel(struct device *dev, int channel); |
| 85 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | /* following are the sysfs callback functions */ |
| 87 | #define show_in_channel(channel) \ |
Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 88 | static ssize_t show_in##channel##_input(struct device *dev, struct device_attribute *attr, char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { \ |
| 90 | return sprintf(buf, "%d\n", pcf8591_read_channel(dev, channel));\ |
| 91 | } \ |
| 92 | static DEVICE_ATTR(in##channel##_input, S_IRUGO, \ |
| 93 | show_in##channel##_input, NULL); |
| 94 | |
| 95 | show_in_channel(0); |
| 96 | show_in_channel(1); |
| 97 | show_in_channel(2); |
| 98 | show_in_channel(3); |
| 99 | |
Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 100 | static ssize_t show_out0_ouput(struct device *dev, struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | { |
| 102 | struct pcf8591_data *data = i2c_get_clientdata(to_i2c_client(dev)); |
| 103 | return sprintf(buf, "%d\n", data->aout * 10); |
| 104 | } |
| 105 | |
Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 106 | static ssize_t set_out0_output(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | { |
| 108 | unsigned int value; |
| 109 | struct i2c_client *client = to_i2c_client(dev); |
| 110 | struct pcf8591_data *data = i2c_get_clientdata(client); |
| 111 | if ((value = (simple_strtoul(buf, NULL, 10) + 5) / 10) <= 255) { |
| 112 | data->aout = value; |
| 113 | i2c_smbus_write_byte_data(client, data->control, data->aout); |
| 114 | return count; |
| 115 | } |
| 116 | return -EINVAL; |
| 117 | } |
| 118 | |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 119 | static DEVICE_ATTR(out0_output, S_IWUSR | S_IRUGO, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | show_out0_ouput, set_out0_output); |
| 121 | |
Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 122 | static ssize_t show_out0_enable(struct device *dev, struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
| 124 | struct pcf8591_data *data = i2c_get_clientdata(to_i2c_client(dev)); |
| 125 | return sprintf(buf, "%u\n", !(!(data->control & PCF8591_CONTROL_AOEF))); |
| 126 | } |
| 127 | |
Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 128 | static ssize_t set_out0_enable(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | { |
| 130 | struct i2c_client *client = to_i2c_client(dev); |
| 131 | struct pcf8591_data *data = i2c_get_clientdata(client); |
| 132 | unsigned long val = simple_strtoul(buf, NULL, 10); |
| 133 | |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 134 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | if (val) |
| 136 | data->control |= PCF8591_CONTROL_AOEF; |
| 137 | else |
| 138 | data->control &= ~PCF8591_CONTROL_AOEF; |
| 139 | i2c_smbus_write_byte(client, data->control); |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 140 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | return count; |
| 142 | } |
| 143 | |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 144 | static DEVICE_ATTR(out0_enable, S_IWUSR | S_IRUGO, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | show_out0_enable, set_out0_enable); |
| 146 | |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 147 | static struct attribute *pcf8591_attributes[] = { |
| 148 | &dev_attr_out0_enable.attr, |
| 149 | &dev_attr_out0_output.attr, |
| 150 | &dev_attr_in0_input.attr, |
| 151 | &dev_attr_in1_input.attr, |
| 152 | NULL |
| 153 | }; |
| 154 | |
| 155 | static const struct attribute_group pcf8591_attr_group = { |
| 156 | .attrs = pcf8591_attributes, |
| 157 | }; |
| 158 | |
| 159 | static struct attribute *pcf8591_attributes_opt[] = { |
| 160 | &dev_attr_in2_input.attr, |
| 161 | &dev_attr_in3_input.attr, |
| 162 | NULL |
| 163 | }; |
| 164 | |
| 165 | static const struct attribute_group pcf8591_attr_group_opt = { |
| 166 | .attrs = pcf8591_attributes_opt, |
| 167 | }; |
| 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | /* |
| 170 | * Real code |
| 171 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 173 | /* Return 0 if detection is successful, -ENODEV otherwise */ |
Jean Delvare | 310ec79 | 2009-12-14 21:17:23 +0100 | [diff] [blame] | 174 | static int pcf8591_detect(struct i2c_client *client, |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 175 | struct i2c_board_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 177 | struct i2c_adapter *adapter = client->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
| 179 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE |
| 180 | | I2C_FUNC_SMBUS_WRITE_BYTE_DATA)) |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 181 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 183 | /* Now, we would do the remaining detection. But the PCF8591 is plainly |
| 184 | impossible to detect! Stupid chip. */ |
| 185 | |
| 186 | strlcpy(info->type, "pcf8591", I2C_NAME_SIZE); |
| 187 | |
| 188 | return 0; |
| 189 | } |
| 190 | |
| 191 | static int pcf8591_probe(struct i2c_client *client, |
| 192 | const struct i2c_device_id *id) |
| 193 | { |
| 194 | struct pcf8591_data *data; |
| 195 | int err; |
| 196 | |
Deepak Saxena | 5263ebb | 2005-10-17 23:09:43 +0200 | [diff] [blame] | 197 | if (!(data = kzalloc(sizeof(struct pcf8591_data), GFP_KERNEL))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | err = -ENOMEM; |
| 199 | goto exit; |
| 200 | } |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 201 | |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 202 | i2c_set_clientdata(client, data); |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 203 | mutex_init(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | /* Initialize the PCF8591 chip */ |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 206 | pcf8591_init_client(client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
| 208 | /* Register sysfs hooks */ |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 209 | err = sysfs_create_group(&client->dev.kobj, &pcf8591_attr_group); |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 210 | if (err) |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 211 | goto exit_kfree; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
| 213 | /* Register input2 if not in "two differential inputs" mode */ |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 214 | if (input_mode != 3) { |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 215 | if ((err = device_create_file(&client->dev, |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 216 | &dev_attr_in2_input))) |
| 217 | goto exit_sysfs_remove; |
| 218 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 220 | /* Register input3 only in "four single ended inputs" mode */ |
| 221 | if (input_mode == 0) { |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 222 | if ((err = device_create_file(&client->dev, |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 223 | &dev_attr_in3_input))) |
| 224 | goto exit_sysfs_remove; |
| 225 | } |
| 226 | |
Jean Delvare | 4275fcd | 2010-10-28 20:31:49 +0200 | [diff] [blame^] | 227 | data->hwmon_dev = hwmon_device_register(&client->dev); |
| 228 | if (IS_ERR(data->hwmon_dev)) { |
| 229 | err = PTR_ERR(data->hwmon_dev); |
| 230 | goto exit_sysfs_remove; |
| 231 | } |
| 232 | |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 233 | return 0; |
| 234 | |
| 235 | exit_sysfs_remove: |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 236 | sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group_opt); |
| 237 | sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | exit_kfree: |
| 239 | kfree(data); |
| 240 | exit: |
| 241 | return err; |
| 242 | } |
| 243 | |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 244 | static int pcf8591_remove(struct i2c_client *client) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | { |
Jean Delvare | 4275fcd | 2010-10-28 20:31:49 +0200 | [diff] [blame^] | 246 | struct pcf8591_data *data = i2c_get_clientdata(client); |
| 247 | |
| 248 | hwmon_device_unregister(data->hwmon_dev); |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 249 | sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group_opt); |
| 250 | sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | kfree(i2c_get_clientdata(client)); |
| 252 | return 0; |
| 253 | } |
| 254 | |
| 255 | /* Called when we have found a new PCF8591. */ |
| 256 | static void pcf8591_init_client(struct i2c_client *client) |
| 257 | { |
| 258 | struct pcf8591_data *data = i2c_get_clientdata(client); |
| 259 | data->control = PCF8591_INIT_CONTROL; |
| 260 | data->aout = PCF8591_INIT_AOUT; |
| 261 | |
| 262 | i2c_smbus_write_byte_data(client, data->control, data->aout); |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 263 | |
| 264 | /* The first byte transmitted contains the conversion code of the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | previous read cycle. FLUSH IT! */ |
| 266 | i2c_smbus_read_byte(client); |
| 267 | } |
| 268 | |
| 269 | static int pcf8591_read_channel(struct device *dev, int channel) |
| 270 | { |
| 271 | u8 value; |
| 272 | struct i2c_client *client = to_i2c_client(dev); |
| 273 | struct pcf8591_data *data = i2c_get_clientdata(client); |
| 274 | |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 275 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
| 277 | if ((data->control & PCF8591_CONTROL_AICH_MASK) != channel) { |
| 278 | data->control = (data->control & ~PCF8591_CONTROL_AICH_MASK) |
| 279 | | channel; |
| 280 | i2c_smbus_write_byte(client, data->control); |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 281 | |
| 282 | /* The first byte transmitted contains the conversion code of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | the previous read cycle. FLUSH IT! */ |
| 284 | i2c_smbus_read_byte(client); |
| 285 | } |
| 286 | value = i2c_smbus_read_byte(client); |
| 287 | |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 288 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
| 290 | if ((channel == 2 && input_mode == 2) || |
| 291 | (channel != 3 && (input_mode == 1 || input_mode == 3))) |
| 292 | return (10 * REG_TO_SIGNED(value)); |
| 293 | else |
| 294 | return (10 * value); |
| 295 | } |
| 296 | |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 297 | static const struct i2c_device_id pcf8591_id[] = { |
| 298 | { "pcf8591", 0 }, |
| 299 | { } |
| 300 | }; |
| 301 | MODULE_DEVICE_TABLE(i2c, pcf8591_id); |
| 302 | |
| 303 | static struct i2c_driver pcf8591_driver = { |
| 304 | .driver = { |
| 305 | .name = "pcf8591", |
| 306 | }, |
| 307 | .probe = pcf8591_probe, |
| 308 | .remove = pcf8591_remove, |
| 309 | .id_table = pcf8591_id, |
| 310 | |
| 311 | .class = I2C_CLASS_HWMON, /* Nearest choice */ |
| 312 | .detect = pcf8591_detect, |
Jean Delvare | c3813d6 | 2009-12-14 21:17:25 +0100 | [diff] [blame] | 313 | .address_list = normal_i2c, |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 314 | }; |
| 315 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | static int __init pcf8591_init(void) |
| 317 | { |
| 318 | if (input_mode < 0 || input_mode > 3) { |
| 319 | printk(KERN_WARNING "pcf8591: invalid input_mode (%d)\n", |
| 320 | input_mode); |
| 321 | input_mode = 0; |
| 322 | } |
| 323 | return i2c_add_driver(&pcf8591_driver); |
| 324 | } |
| 325 | |
| 326 | static void __exit pcf8591_exit(void) |
| 327 | { |
| 328 | i2c_del_driver(&pcf8591_driver); |
| 329 | } |
| 330 | |
| 331 | MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>"); |
| 332 | MODULE_DESCRIPTION("PCF8591 driver"); |
| 333 | MODULE_LICENSE("GPL"); |
| 334 | |
| 335 | module_init(pcf8591_init); |
| 336 | module_exit(pcf8591_exit); |