Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 2 | * Copyright (C) 2001-2004 Aurelien Jarno <aurelien@aurel32.net> |
| 3 | * Ported to Linux 2.6 by Aurelien Jarno <aurelien@aurel32.net> with |
| 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 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Joe Perches | 2caec13 | 2010-10-20 06:51:45 +0000 | [diff] [blame] | 21 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/module.h> |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/i2c.h> |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 27 | #include <linux/mutex.h> |
Jean Delvare | 4275fcd | 2010-10-28 20:31:49 +0200 | [diff] [blame] | 28 | #include <linux/err.h> |
| 29 | #include <linux/hwmon.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | /* Insmod parameters */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | static int input_mode; |
| 34 | module_param(input_mode, int, 0); |
| 35 | MODULE_PARM_DESC(input_mode, |
| 36 | "Analog input mode:\n" |
| 37 | " 0 = four single ended inputs\n" |
| 38 | " 1 = three differential inputs\n" |
| 39 | " 2 = single ended and differential mixed\n" |
| 40 | " 3 = two differential inputs\n"); |
| 41 | |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 42 | /* |
| 43 | * The PCF8591 control byte |
| 44 | * 7 6 5 4 3 2 1 0 |
| 45 | * | 0 |AOEF| AIP | 0 |AINC| AICH | |
| 46 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 51 | /* |
| 52 | * Analog Input Programming |
| 53 | * 0x00 = four single ended inputs |
| 54 | * 0x10 = three differential inputs |
| 55 | * 0x20 = single ended and differential mixed |
| 56 | * 0x30 = two differential inputs |
| 57 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #define PCF8591_CONTROL_AIP_MASK 0x30 |
| 59 | |
| 60 | /* Autoincrement Flag (switch on if 1) */ |
| 61 | #define PCF8591_CONTROL_AINC 0x04 |
| 62 | |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 63 | /* |
| 64 | * Channel selection |
| 65 | * 0x00 = channel 0 |
| 66 | * 0x01 = channel 1 |
| 67 | * 0x02 = channel 2 |
| 68 | * 0x03 = channel 3 |
| 69 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | #define PCF8591_CONTROL_AICH_MASK 0x03 |
| 71 | |
| 72 | /* Initial values */ |
| 73 | #define PCF8591_INIT_CONTROL ((input_mode << 4) | PCF8591_CONTROL_AOEF) |
| 74 | #define PCF8591_INIT_AOUT 0 /* DAC out = 0 */ |
| 75 | |
| 76 | /* Conversions */ |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 77 | #define REG_TO_SIGNED(reg) (((reg) & 0x80) ? ((reg) - 256) : (reg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
| 79 | struct pcf8591_data { |
Jean Delvare | 4275fcd | 2010-10-28 20:31:49 +0200 | [diff] [blame] | 80 | struct device *hwmon_dev; |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 81 | struct mutex update_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
| 83 | u8 control; |
| 84 | u8 aout; |
| 85 | }; |
| 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | static void pcf8591_init_client(struct i2c_client *client); |
| 88 | static int pcf8591_read_channel(struct device *dev, int channel); |
| 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | /* following are the sysfs callback functions */ |
| 91 | #define show_in_channel(channel) \ |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 92 | static ssize_t show_in##channel##_input(struct device *dev, \ |
| 93 | struct device_attribute *attr, \ |
| 94 | char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | { \ |
| 96 | return sprintf(buf, "%d\n", pcf8591_read_channel(dev, channel));\ |
| 97 | } \ |
| 98 | static DEVICE_ATTR(in##channel##_input, S_IRUGO, \ |
| 99 | show_in##channel##_input, NULL); |
| 100 | |
| 101 | show_in_channel(0); |
| 102 | show_in_channel(1); |
| 103 | show_in_channel(2); |
| 104 | show_in_channel(3); |
| 105 | |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 106 | static ssize_t show_out0_ouput(struct device *dev, |
| 107 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { |
| 109 | struct pcf8591_data *data = i2c_get_clientdata(to_i2c_client(dev)); |
| 110 | return sprintf(buf, "%d\n", data->aout * 10); |
| 111 | } |
| 112 | |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 113 | static ssize_t set_out0_output(struct device *dev, |
| 114 | struct device_attribute *attr, |
| 115 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | { |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 117 | unsigned long val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | struct i2c_client *client = to_i2c_client(dev); |
| 119 | struct pcf8591_data *data = i2c_get_clientdata(client); |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 120 | int err; |
| 121 | |
| 122 | err = kstrtoul(buf, 10, &val); |
| 123 | if (err) |
| 124 | return err; |
| 125 | |
| 126 | val /= 10; |
| 127 | if (val > 255) |
| 128 | return -EINVAL; |
| 129 | |
| 130 | data->aout = val; |
| 131 | i2c_smbus_write_byte_data(client, data->control, data->aout); |
| 132 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | } |
| 134 | |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 135 | static DEVICE_ATTR(out0_output, S_IWUSR | S_IRUGO, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | show_out0_ouput, set_out0_output); |
| 137 | |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 138 | static ssize_t show_out0_enable(struct device *dev, |
| 139 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { |
| 141 | struct pcf8591_data *data = i2c_get_clientdata(to_i2c_client(dev)); |
| 142 | return sprintf(buf, "%u\n", !(!(data->control & PCF8591_CONTROL_AOEF))); |
| 143 | } |
| 144 | |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 145 | static ssize_t set_out0_enable(struct device *dev, |
| 146 | struct device_attribute *attr, |
| 147 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | { |
| 149 | struct i2c_client *client = to_i2c_client(dev); |
| 150 | struct pcf8591_data *data = i2c_get_clientdata(client); |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 151 | unsigned long val; |
| 152 | int err; |
| 153 | |
| 154 | err = kstrtoul(buf, 10, &val); |
| 155 | if (err) |
| 156 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 158 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | if (val) |
| 160 | data->control |= PCF8591_CONTROL_AOEF; |
| 161 | else |
| 162 | data->control &= ~PCF8591_CONTROL_AOEF; |
| 163 | i2c_smbus_write_byte(client, data->control); |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 164 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | return count; |
| 166 | } |
| 167 | |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 168 | static DEVICE_ATTR(out0_enable, S_IWUSR | S_IRUGO, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | show_out0_enable, set_out0_enable); |
| 170 | |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 171 | static struct attribute *pcf8591_attributes[] = { |
| 172 | &dev_attr_out0_enable.attr, |
| 173 | &dev_attr_out0_output.attr, |
| 174 | &dev_attr_in0_input.attr, |
| 175 | &dev_attr_in1_input.attr, |
| 176 | NULL |
| 177 | }; |
| 178 | |
| 179 | static const struct attribute_group pcf8591_attr_group = { |
| 180 | .attrs = pcf8591_attributes, |
| 181 | }; |
| 182 | |
| 183 | static struct attribute *pcf8591_attributes_opt[] = { |
| 184 | &dev_attr_in2_input.attr, |
| 185 | &dev_attr_in3_input.attr, |
| 186 | NULL |
| 187 | }; |
| 188 | |
| 189 | static const struct attribute_group pcf8591_attr_group_opt = { |
| 190 | .attrs = pcf8591_attributes_opt, |
| 191 | }; |
| 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | /* |
| 194 | * Real code |
| 195 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 197 | static int pcf8591_probe(struct i2c_client *client, |
| 198 | const struct i2c_device_id *id) |
| 199 | { |
| 200 | struct pcf8591_data *data; |
| 201 | int err; |
| 202 | |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 203 | data = kzalloc(sizeof(struct pcf8591_data), GFP_KERNEL); |
| 204 | if (!data) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | err = -ENOMEM; |
| 206 | goto exit; |
| 207 | } |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 208 | |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 209 | i2c_set_clientdata(client, data); |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 210 | mutex_init(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | /* Initialize the PCF8591 chip */ |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 213 | pcf8591_init_client(client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
| 215 | /* Register sysfs hooks */ |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 216 | err = sysfs_create_group(&client->dev.kobj, &pcf8591_attr_group); |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 217 | if (err) |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 218 | goto exit_kfree; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
| 220 | /* Register input2 if not in "two differential inputs" mode */ |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 221 | if (input_mode != 3) { |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 222 | err = device_create_file(&client->dev, &dev_attr_in2_input); |
| 223 | if (err) |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 224 | goto exit_sysfs_remove; |
| 225 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 227 | /* Register input3 only in "four single ended inputs" mode */ |
| 228 | if (input_mode == 0) { |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 229 | err = device_create_file(&client->dev, &dev_attr_in3_input); |
| 230 | if (err) |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 231 | goto exit_sysfs_remove; |
| 232 | } |
| 233 | |
Jean Delvare | 4275fcd | 2010-10-28 20:31:49 +0200 | [diff] [blame] | 234 | data->hwmon_dev = hwmon_device_register(&client->dev); |
| 235 | if (IS_ERR(data->hwmon_dev)) { |
| 236 | err = PTR_ERR(data->hwmon_dev); |
| 237 | goto exit_sysfs_remove; |
| 238 | } |
| 239 | |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 240 | return 0; |
| 241 | |
| 242 | exit_sysfs_remove: |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 243 | sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group_opt); |
| 244 | sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | exit_kfree: |
| 246 | kfree(data); |
| 247 | exit: |
| 248 | return err; |
| 249 | } |
| 250 | |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 251 | static int pcf8591_remove(struct i2c_client *client) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | { |
Jean Delvare | 4275fcd | 2010-10-28 20:31:49 +0200 | [diff] [blame] | 253 | struct pcf8591_data *data = i2c_get_clientdata(client); |
| 254 | |
| 255 | hwmon_device_unregister(data->hwmon_dev); |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 256 | sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group_opt); |
| 257 | sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | kfree(i2c_get_clientdata(client)); |
| 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | /* Called when we have found a new PCF8591. */ |
| 263 | static void pcf8591_init_client(struct i2c_client *client) |
| 264 | { |
| 265 | struct pcf8591_data *data = i2c_get_clientdata(client); |
| 266 | data->control = PCF8591_INIT_CONTROL; |
| 267 | data->aout = PCF8591_INIT_AOUT; |
| 268 | |
| 269 | i2c_smbus_write_byte_data(client, data->control, data->aout); |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 270 | |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 271 | /* |
| 272 | * The first byte transmitted contains the conversion code of the |
| 273 | * previous read cycle. FLUSH IT! |
| 274 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | i2c_smbus_read_byte(client); |
| 276 | } |
| 277 | |
| 278 | static int pcf8591_read_channel(struct device *dev, int channel) |
| 279 | { |
| 280 | u8 value; |
| 281 | struct i2c_client *client = to_i2c_client(dev); |
| 282 | struct pcf8591_data *data = i2c_get_clientdata(client); |
| 283 | |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 284 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
| 286 | if ((data->control & PCF8591_CONTROL_AICH_MASK) != channel) { |
| 287 | data->control = (data->control & ~PCF8591_CONTROL_AICH_MASK) |
| 288 | | channel; |
| 289 | i2c_smbus_write_byte(client, data->control); |
Jean Delvare | fb4504f | 2009-03-30 21:46:43 +0200 | [diff] [blame] | 290 | |
Guenter Roeck | 5725608 | 2012-01-14 21:57:29 -0800 | [diff] [blame^] | 291 | /* |
| 292 | * The first byte transmitted contains the conversion code of |
| 293 | * the previous read cycle. FLUSH IT! |
| 294 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | i2c_smbus_read_byte(client); |
| 296 | } |
| 297 | value = i2c_smbus_read_byte(client); |
| 298 | |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 299 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
| 301 | if ((channel == 2 && input_mode == 2) || |
| 302 | (channel != 3 && (input_mode == 1 || input_mode == 3))) |
Frans Meulenbroeks | 7fe83ad | 2012-01-05 19:50:18 +0100 | [diff] [blame] | 303 | return 10 * REG_TO_SIGNED(value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | else |
Frans Meulenbroeks | 7fe83ad | 2012-01-05 19:50:18 +0100 | [diff] [blame] | 305 | return 10 * value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | } |
| 307 | |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 308 | static const struct i2c_device_id pcf8591_id[] = { |
| 309 | { "pcf8591", 0 }, |
| 310 | { } |
| 311 | }; |
| 312 | MODULE_DEVICE_TABLE(i2c, pcf8591_id); |
| 313 | |
| 314 | static struct i2c_driver pcf8591_driver = { |
| 315 | .driver = { |
| 316 | .name = "pcf8591", |
| 317 | }, |
| 318 | .probe = pcf8591_probe, |
| 319 | .remove = pcf8591_remove, |
| 320 | .id_table = pcf8591_id, |
Jean Delvare | 8b77e6a | 2008-07-16 19:30:06 +0200 | [diff] [blame] | 321 | }; |
| 322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | static int __init pcf8591_init(void) |
| 324 | { |
| 325 | if (input_mode < 0 || input_mode > 3) { |
Joe Perches | 2caec13 | 2010-10-20 06:51:45 +0000 | [diff] [blame] | 326 | pr_warn("invalid input_mode (%d)\n", input_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | input_mode = 0; |
| 328 | } |
| 329 | return i2c_add_driver(&pcf8591_driver); |
| 330 | } |
| 331 | |
| 332 | static void __exit pcf8591_exit(void) |
| 333 | { |
| 334 | i2c_del_driver(&pcf8591_driver); |
| 335 | } |
| 336 | |
| 337 | MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>"); |
| 338 | MODULE_DESCRIPTION("PCF8591 driver"); |
| 339 | MODULE_LICENSE("GPL"); |
| 340 | |
| 341 | module_init(pcf8591_init); |
| 342 | module_exit(pcf8591_exit); |