Commit 74880c06 authored by Yani Ioannou's avatar Yani Ioannou Committed by Greg Kroah-Hartman

[PATCH] Driver Core: drivers/base - drivers/i2c/chips/adm1026.c: update device attribute callbacks

Signed-off-by: default avatarYani Ioannou <yani.ioannou@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent ff381d22
...@@ -41,7 +41,7 @@ struct dma_page { /* cacheable header for 'allocation' bytes */ ...@@ -41,7 +41,7 @@ struct dma_page { /* cacheable header for 'allocation' bytes */
static DECLARE_MUTEX (pools_lock); static DECLARE_MUTEX (pools_lock);
static ssize_t static ssize_t
show_pools (struct device *dev, char *buf) show_pools (struct device *dev, struct device_attribute *attr, char *buf)
{ {
unsigned temp; unsigned temp;
unsigned size; unsigned size;
......
...@@ -24,12 +24,12 @@ ...@@ -24,12 +24,12 @@
* low-power state. * low-power state.
*/ */
static ssize_t state_show(struct device * dev, char * buf) static ssize_t state_show(struct device * dev, struct device_attribute *attr, char * buf)
{ {
return sprintf(buf, "%u\n", dev->power.power_state); return sprintf(buf, "%u\n", dev->power.power_state);
} }
static ssize_t state_store(struct device * dev, const char * buf, size_t n) static ssize_t state_store(struct device * dev, struct device_attribute *attr, const char * buf, size_t n)
{ {
u32 state; u32 state;
char * rest; char * rest;
......
...@@ -430,7 +430,7 @@ static void ub_cmdtr_sense(struct ub_dev *sc, struct ub_scsi_cmd *cmd, ...@@ -430,7 +430,7 @@ static void ub_cmdtr_sense(struct ub_dev *sc, struct ub_scsi_cmd *cmd,
} }
} }
static ssize_t ub_diag_show(struct device *dev, char *page) static ssize_t ub_diag_show(struct device *dev, struct device_attribute *attr, char *page)
{ {
struct usb_interface *intf; struct usb_interface *intf;
struct ub_dev *sc; struct ub_dev *sc;
......
...@@ -1466,7 +1466,7 @@ static inline struct hvcs_struct *from_vio_dev(struct vio_dev *viod) ...@@ -1466,7 +1466,7 @@ static inline struct hvcs_struct *from_vio_dev(struct vio_dev *viod)
} }
/* The sysfs interface for the driver and devices */ /* The sysfs interface for the driver and devices */
static ssize_t hvcs_partner_vtys_show(struct device *dev, char *buf) static ssize_t hvcs_partner_vtys_show(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct vio_dev *viod = to_vio_dev(dev); struct vio_dev *viod = to_vio_dev(dev);
struct hvcs_struct *hvcsd = from_vio_dev(viod); struct hvcs_struct *hvcsd = from_vio_dev(viod);
...@@ -1480,7 +1480,7 @@ static ssize_t hvcs_partner_vtys_show(struct device *dev, char *buf) ...@@ -1480,7 +1480,7 @@ static ssize_t hvcs_partner_vtys_show(struct device *dev, char *buf)
} }
static DEVICE_ATTR(partner_vtys, S_IRUGO, hvcs_partner_vtys_show, NULL); static DEVICE_ATTR(partner_vtys, S_IRUGO, hvcs_partner_vtys_show, NULL);
static ssize_t hvcs_partner_clcs_show(struct device *dev, char *buf) static ssize_t hvcs_partner_clcs_show(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct vio_dev *viod = to_vio_dev(dev); struct vio_dev *viod = to_vio_dev(dev);
struct hvcs_struct *hvcsd = from_vio_dev(viod); struct hvcs_struct *hvcsd = from_vio_dev(viod);
...@@ -1494,7 +1494,7 @@ static ssize_t hvcs_partner_clcs_show(struct device *dev, char *buf) ...@@ -1494,7 +1494,7 @@ static ssize_t hvcs_partner_clcs_show(struct device *dev, char *buf)
} }
static DEVICE_ATTR(partner_clcs, S_IRUGO, hvcs_partner_clcs_show, NULL); static DEVICE_ATTR(partner_clcs, S_IRUGO, hvcs_partner_clcs_show, NULL);
static ssize_t hvcs_current_vty_store(struct device *dev, const char * buf, static ssize_t hvcs_current_vty_store(struct device *dev, struct device_attribute *attr, const char * buf,
size_t count) size_t count)
{ {
/* /*
...@@ -1505,7 +1505,7 @@ static ssize_t hvcs_current_vty_store(struct device *dev, const char * buf, ...@@ -1505,7 +1505,7 @@ static ssize_t hvcs_current_vty_store(struct device *dev, const char * buf,
return -EPERM; return -EPERM;
} }
static ssize_t hvcs_current_vty_show(struct device *dev, char *buf) static ssize_t hvcs_current_vty_show(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct vio_dev *viod = to_vio_dev(dev); struct vio_dev *viod = to_vio_dev(dev);
struct hvcs_struct *hvcsd = from_vio_dev(viod); struct hvcs_struct *hvcsd = from_vio_dev(viod);
...@@ -1521,7 +1521,7 @@ static ssize_t hvcs_current_vty_show(struct device *dev, char *buf) ...@@ -1521,7 +1521,7 @@ static ssize_t hvcs_current_vty_show(struct device *dev, char *buf)
static DEVICE_ATTR(current_vty, static DEVICE_ATTR(current_vty,
S_IRUGO | S_IWUSR, hvcs_current_vty_show, hvcs_current_vty_store); S_IRUGO | S_IWUSR, hvcs_current_vty_show, hvcs_current_vty_store);
static ssize_t hvcs_vterm_state_store(struct device *dev, const char *buf, static ssize_t hvcs_vterm_state_store(struct device *dev, struct device_attribute *attr, const char *buf,
size_t count) size_t count)
{ {
struct vio_dev *viod = to_vio_dev(dev); struct vio_dev *viod = to_vio_dev(dev);
...@@ -1559,7 +1559,7 @@ static ssize_t hvcs_vterm_state_store(struct device *dev, const char *buf, ...@@ -1559,7 +1559,7 @@ static ssize_t hvcs_vterm_state_store(struct device *dev, const char *buf,
return count; return count;
} }
static ssize_t hvcs_vterm_state_show(struct device *dev, char *buf) static ssize_t hvcs_vterm_state_show(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct vio_dev *viod = to_vio_dev(dev); struct vio_dev *viod = to_vio_dev(dev);
struct hvcs_struct *hvcsd = from_vio_dev(viod); struct hvcs_struct *hvcsd = from_vio_dev(viod);
...@@ -1574,7 +1574,7 @@ static ssize_t hvcs_vterm_state_show(struct device *dev, char *buf) ...@@ -1574,7 +1574,7 @@ static ssize_t hvcs_vterm_state_show(struct device *dev, char *buf)
static DEVICE_ATTR(vterm_state, S_IRUGO | S_IWUSR, static DEVICE_ATTR(vterm_state, S_IRUGO | S_IWUSR,
hvcs_vterm_state_show, hvcs_vterm_state_store); hvcs_vterm_state_show, hvcs_vterm_state_store);
static ssize_t hvcs_index_show(struct device *dev, char *buf) static ssize_t hvcs_index_show(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct vio_dev *viod = to_vio_dev(dev); struct vio_dev *viod = to_vio_dev(dev);
struct hvcs_struct *hvcsd = from_vio_dev(viod); struct hvcs_struct *hvcsd = from_vio_dev(viod);
......
...@@ -699,7 +699,7 @@ static inline int mbcs_hw_init(struct mbcs_soft *soft) ...@@ -699,7 +699,7 @@ static inline int mbcs_hw_init(struct mbcs_soft *soft)
return 0; return 0;
} }
static ssize_t show_algo(struct device *dev, char *buf) static ssize_t show_algo(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct cx_dev *cx_dev = to_cx_dev(dev); struct cx_dev *cx_dev = to_cx_dev(dev);
struct mbcs_soft *soft = cx_dev->soft; struct mbcs_soft *soft = cx_dev->soft;
...@@ -715,7 +715,7 @@ static ssize_t show_algo(struct device *dev, char *buf) ...@@ -715,7 +715,7 @@ static ssize_t show_algo(struct device *dev, char *buf)
(debug0 >> 32), (debug0 & 0xffffffff)); (debug0 >> 32), (debug0 & 0xffffffff));
} }
static ssize_t store_algo(struct device *dev, const char *buf, size_t count) static ssize_t store_algo(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{ {
int n; int n;
struct cx_dev *cx_dev = to_cx_dev(dev); struct cx_dev *cx_dev = to_cx_dev(dev);
......
...@@ -472,7 +472,7 @@ struct device mwave_device; ...@@ -472,7 +472,7 @@ struct device mwave_device;
/* Prevent code redundancy, create a macro for mwave_show_* functions. */ /* Prevent code redundancy, create a macro for mwave_show_* functions. */
#define mwave_show_function(attr_name, format_string, field) \ #define mwave_show_function(attr_name, format_string, field) \
static ssize_t mwave_show_##attr_name(struct device *dev, char *buf) \ static ssize_t mwave_show_##attr_name(struct device *dev, struct device_attribute *attr, char *buf) \
{ \ { \
DSP_3780I_CONFIG_SETTINGS *pSettings = \ DSP_3780I_CONFIG_SETTINGS *pSettings = \
&mwave_s_mdd.rBDData.rDspSettings; \ &mwave_s_mdd.rBDData.rDspSettings; \
......
...@@ -212,7 +212,7 @@ static u8 pcrread[] = { ...@@ -212,7 +212,7 @@ static u8 pcrread[] = {
0, 0, 0, 0 /* PCR index */ 0, 0, 0, 0 /* PCR index */
}; };
static ssize_t show_pcrs(struct device *dev, char *buf) static ssize_t show_pcrs(struct device *dev, struct device_attribute *attr, char *buf)
{ {
u8 data[READ_PCR_RESULT_SIZE]; u8 data[READ_PCR_RESULT_SIZE];
ssize_t len; ssize_t len;
...@@ -255,7 +255,7 @@ static u8 readpubek[] = { ...@@ -255,7 +255,7 @@ static u8 readpubek[] = {
0, 0, 0, 124, /* TPM_ORD_ReadPubek */ 0, 0, 0, 124, /* TPM_ORD_ReadPubek */
}; };
static ssize_t show_pubek(struct device *dev, char *buf) static ssize_t show_pubek(struct device *dev, struct device_attribute *attr, char *buf)
{ {
u8 data[READ_PUBEK_RESULT_SIZE]; u8 data[READ_PUBEK_RESULT_SIZE];
ssize_t len; ssize_t len;
...@@ -330,7 +330,7 @@ static u8 cap_manufacturer[] = { ...@@ -330,7 +330,7 @@ static u8 cap_manufacturer[] = {
0, 0, 1, 3 0, 0, 1, 3
}; };
static ssize_t show_caps(struct device *dev, char *buf) static ssize_t show_caps(struct device *dev, struct device_attribute *attr, char *buf)
{ {
u8 data[READ_PUBEK_RESULT_SIZE]; u8 data[READ_PUBEK_RESULT_SIZE];
ssize_t len; ssize_t len;
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
/* show configuration fields */ /* show configuration fields */
static ssize_t dio_show_id(struct device *dev, char *buf) static ssize_t dio_show_id(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct dio_dev *d; struct dio_dev *d;
...@@ -26,7 +26,7 @@ static ssize_t dio_show_id(struct device *dev, char *buf) ...@@ -26,7 +26,7 @@ static ssize_t dio_show_id(struct device *dev, char *buf)
} }
static DEVICE_ATTR(id, S_IRUGO, dio_show_id, NULL); static DEVICE_ATTR(id, S_IRUGO, dio_show_id, NULL);
static ssize_t dio_show_ipl(struct device *dev, char *buf) static ssize_t dio_show_ipl(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct dio_dev *d; struct dio_dev *d;
...@@ -35,7 +35,7 @@ static ssize_t dio_show_ipl(struct device *dev, char *buf) ...@@ -35,7 +35,7 @@ static ssize_t dio_show_ipl(struct device *dev, char *buf)
} }
static DEVICE_ATTR(ipl, S_IRUGO, dio_show_ipl, NULL); static DEVICE_ATTR(ipl, S_IRUGO, dio_show_ipl, NULL);
static ssize_t dio_show_secid(struct device *dev, char *buf) static ssize_t dio_show_secid(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct dio_dev *d; struct dio_dev *d;
...@@ -44,7 +44,7 @@ static ssize_t dio_show_secid(struct device *dev, char *buf) ...@@ -44,7 +44,7 @@ static ssize_t dio_show_secid(struct device *dev, char *buf)
} }
static DEVICE_ATTR(secid, S_IRUGO, dio_show_secid, NULL); static DEVICE_ATTR(secid, S_IRUGO, dio_show_secid, NULL);
static ssize_t dio_show_name(struct device *dev, char *buf) static ssize_t dio_show_name(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct dio_dev *d; struct dio_dev *d;
...@@ -53,7 +53,7 @@ static ssize_t dio_show_name(struct device *dev, char *buf) ...@@ -53,7 +53,7 @@ static ssize_t dio_show_name(struct device *dev, char *buf)
} }
static DEVICE_ATTR(name, S_IRUGO, dio_show_name, NULL); static DEVICE_ATTR(name, S_IRUGO, dio_show_name, NULL);
static ssize_t dio_show_resource(struct device *dev, char *buf) static ssize_t dio_show_resource(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct dio_dev *d = to_dio_dev(dev); struct dio_dev *d = to_dio_dev(dev);
......
...@@ -149,7 +149,7 @@ void eisa_driver_unregister (struct eisa_driver *edrv) ...@@ -149,7 +149,7 @@ void eisa_driver_unregister (struct eisa_driver *edrv)
driver_unregister (&edrv->driver); driver_unregister (&edrv->driver);
} }
static ssize_t eisa_show_sig (struct device *dev, char *buf) static ssize_t eisa_show_sig (struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct eisa_device *edev = to_eisa_device (dev); struct eisa_device *edev = to_eisa_device (dev);
return sprintf (buf,"%s\n", edev->id.sig); return sprintf (buf,"%s\n", edev->id.sig);
...@@ -157,7 +157,7 @@ static ssize_t eisa_show_sig (struct device *dev, char *buf) ...@@ -157,7 +157,7 @@ static ssize_t eisa_show_sig (struct device *dev, char *buf)
static DEVICE_ATTR(signature, S_IRUGO, eisa_show_sig, NULL); static DEVICE_ATTR(signature, S_IRUGO, eisa_show_sig, NULL);
static ssize_t eisa_show_state (struct device *dev, char *buf) static ssize_t eisa_show_state (struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct eisa_device *edev = to_eisa_device (dev); struct eisa_device *edev = to_eisa_device (dev);
return sprintf (buf,"%d\n", edev->state & EISA_CONFIG_ENABLED); return sprintf (buf,"%d\n", edev->state & EISA_CONFIG_ENABLED);
......
...@@ -137,7 +137,7 @@ static struct i2c_driver adm1021_driver = { ...@@ -137,7 +137,7 @@ static struct i2c_driver adm1021_driver = {
}; };
#define show(value) \ #define show(value) \
static ssize_t show_##value(struct device *dev, char *buf) \ static ssize_t show_##value(struct device *dev, struct device_attribute *attr, char *buf) \
{ \ { \
struct adm1021_data *data = adm1021_update_device(dev); \ struct adm1021_data *data = adm1021_update_device(dev); \
return sprintf(buf, "%d\n", TEMP_FROM_REG(data->value)); \ return sprintf(buf, "%d\n", TEMP_FROM_REG(data->value)); \
...@@ -150,7 +150,7 @@ show(remote_temp_hyst); ...@@ -150,7 +150,7 @@ show(remote_temp_hyst);
show(remote_temp_input); show(remote_temp_input);
#define show2(value) \ #define show2(value) \
static ssize_t show_##value(struct device *dev, char *buf) \ static ssize_t show_##value(struct device *dev, struct device_attribute *attr, char *buf) \
{ \ { \
struct adm1021_data *data = adm1021_update_device(dev); \ struct adm1021_data *data = adm1021_update_device(dev); \
return sprintf(buf, "%d\n", data->value); \ return sprintf(buf, "%d\n", data->value); \
...@@ -159,7 +159,7 @@ show2(alarms); ...@@ -159,7 +159,7 @@ show2(alarms);
show2(die_code); show2(die_code);
#define set(value, reg) \ #define set(value, reg) \
static ssize_t set_##value(struct device *dev, const char *buf, size_t count) \ static ssize_t set_##value(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
{ \ { \
struct i2c_client *client = to_i2c_client(dev); \ struct i2c_client *client = to_i2c_client(dev); \
struct adm1021_data *data = i2c_get_clientdata(client); \ struct adm1021_data *data = i2c_get_clientdata(client); \
......
...@@ -153,19 +153,19 @@ struct adm1025_data { ...@@ -153,19 +153,19 @@ struct adm1025_data {
*/ */
#define show_in(offset) \ #define show_in(offset) \
static ssize_t show_in##offset(struct device *dev, char *buf) \ static ssize_t show_in##offset(struct device *dev, struct device_attribute *attr, char *buf) \
{ \ { \
struct adm1025_data *data = adm1025_update_device(dev); \ struct adm1025_data *data = adm1025_update_device(dev); \
return sprintf(buf, "%u\n", IN_FROM_REG(data->in[offset], \ return sprintf(buf, "%u\n", IN_FROM_REG(data->in[offset], \
in_scale[offset])); \ in_scale[offset])); \
} \ } \
static ssize_t show_in##offset##_min(struct device *dev, char *buf) \ static ssize_t show_in##offset##_min(struct device *dev, struct device_attribute *attr, char *buf) \
{ \ { \
struct adm1025_data *data = adm1025_update_device(dev); \ struct adm1025_data *data = adm1025_update_device(dev); \
return sprintf(buf, "%u\n", IN_FROM_REG(data->in_min[offset], \ return sprintf(buf, "%u\n", IN_FROM_REG(data->in_min[offset], \
in_scale[offset])); \ in_scale[offset])); \
} \ } \
static ssize_t show_in##offset##_max(struct device *dev, char *buf) \ static ssize_t show_in##offset##_max(struct device *dev, struct device_attribute *attr, char *buf) \
{ \ { \
struct adm1025_data *data = adm1025_update_device(dev); \ struct adm1025_data *data = adm1025_update_device(dev); \
return sprintf(buf, "%u\n", IN_FROM_REG(data->in_max[offset], \ return sprintf(buf, "%u\n", IN_FROM_REG(data->in_max[offset], \
...@@ -180,17 +180,17 @@ show_in(4); ...@@ -180,17 +180,17 @@ show_in(4);
show_in(5); show_in(5);
#define show_temp(offset) \ #define show_temp(offset) \
static ssize_t show_temp##offset(struct device *dev, char *buf) \ static ssize_t show_temp##offset(struct device *dev, struct device_attribute *attr, char *buf) \
{ \ { \
struct adm1025_data *data = adm1025_update_device(dev); \ struct adm1025_data *data = adm1025_update_device(dev); \
return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[offset-1])); \ return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[offset-1])); \
} \ } \
static ssize_t show_temp##offset##_min(struct device *dev, char *buf) \ static ssize_t show_temp##offset##_min(struct device *dev, struct device_attribute *attr, char *buf) \
{ \ { \
struct adm1025_data *data = adm1025_update_device(dev); \ struct adm1025_data *data = adm1025_update_device(dev); \
return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_min[offset-1])); \ return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_min[offset-1])); \
} \ } \
static ssize_t show_temp##offset##_max(struct device *dev, char *buf) \ static ssize_t show_temp##offset##_max(struct device *dev, struct device_attribute *attr, char *buf) \
{ \ { \
struct adm1025_data *data = adm1025_update_device(dev); \ struct adm1025_data *data = adm1025_update_device(dev); \
return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[offset-1])); \ return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[offset-1])); \
...@@ -200,7 +200,7 @@ show_temp(1); ...@@ -200,7 +200,7 @@ show_temp(1);
show_temp(2); show_temp(2);
#define set_in(offset) \ #define set_in(offset) \
static ssize_t set_in##offset##_min(struct device *dev, const char *buf, \ static ssize_t set_in##offset##_min(struct device *dev, struct device_attribute *attr, const char *buf, \
size_t count) \ size_t count) \
{ \ { \
struct i2c_client *client = to_i2c_client(dev); \ struct i2c_client *client = to_i2c_client(dev); \
...@@ -214,7 +214,7 @@ static ssize_t set_in##offset##_min(struct device *dev, const char *buf, \ ...@@ -214,7 +214,7 @@ static ssize_t set_in##offset##_min(struct device *dev, const char *buf, \
up(&data->update_lock); \ up(&data->update_lock); \
return count; \ return count; \
} \ } \
static ssize_t set_in##offset##_max(struct device *dev, const char *buf, \ static ssize_t set_in##offset##_max(struct device *dev, struct device_attribute *attr, const char *buf, \
size_t count) \ size_t count) \
{ \ { \
struct i2c_client *client = to_i2c_client(dev); \ struct i2c_client *client = to_i2c_client(dev); \
...@@ -240,7 +240,7 @@ set_in(4); ...@@ -240,7 +240,7 @@ set_in(4);
set_in(5); set_in(5);
#define set_temp(offset) \ #define set_temp(offset) \
static ssize_t set_temp##offset##_min(struct device *dev, const char *buf, \ static ssize_t set_temp##offset##_min(struct device *dev, struct device_attribute *attr, const char *buf, \
size_t count) \ size_t count) \
{ \ { \
struct i2c_client *client = to_i2c_client(dev); \ struct i2c_client *client = to_i2c_client(dev); \
...@@ -254,7 +254,7 @@ static ssize_t set_temp##offset##_min(struct device *dev, const char *buf, \ ...@@ -254,7 +254,7 @@ static ssize_t set_temp##offset##_min(struct device *dev, const char *buf, \
up(&data->update_lock); \ up(&data->update_lock); \
return count; \ return count; \
} \ } \
static ssize_t set_temp##offset##_max(struct device *dev, const char *buf, \ static ssize_t set_temp##offset##_max(struct device *dev, struct device_attribute *attr, const char *buf, \
size_t count) \ size_t count) \
{ \ { \
struct i2c_client *client = to_i2c_client(dev); \ struct i2c_client *client = to_i2c_client(dev); \
...@@ -275,26 +275,26 @@ static DEVICE_ATTR(temp##offset##_max, S_IWUSR | S_IRUGO, \ ...@@ -275,26 +275,26 @@ static DEVICE_ATTR(temp##offset##_max, S_IWUSR | S_IRUGO, \
set_temp(1); set_temp(1);
set_temp(2); set_temp(2);
static ssize_t show_alarms(struct device *dev, char *buf) static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct adm1025_data *data = adm1025_update_device(dev); struct adm1025_data *data = adm1025_update_device(dev);
return sprintf(buf, "%u\n", data->alarms); return sprintf(buf, "%u\n", data->alarms);
} }
static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL); static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
static ssize_t show_vid(struct device *dev, char *buf) static ssize_t show_vid(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct adm1025_data *data = adm1025_update_device(dev); struct adm1025_data *data = adm1025_update_device(dev);
return sprintf(buf, "%u\n", vid_from_reg(data->vid, data->vrm)); return sprintf(buf, "%u\n", vid_from_reg(data->vid, data->vrm));
} }
static DEVICE_ATTR(in1_ref, S_IRUGO, show_vid, NULL); static DEVICE_ATTR(in1_ref, S_IRUGO, show_vid, NULL);
static ssize_t show_vrm(struct device *dev, char *buf) static ssize_t show_vrm(struct device *dev, struct device_attribute *attr, char *buf)
{ {
struct adm1025_data *data = adm1025_update_device(dev); struct adm1025_data *data = adm1025_update_device(dev);
return sprintf(buf, "%u\n", data->vrm); return sprintf(buf, "%u\n", data->vrm);
} }
static ssize_t set_vrm(struct device *dev, const char *buf, size_t count) static ssize_t set_vrm(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{ {
struct i2c_client *client = to_i2c_client(dev); struct i2c_client *client = to_i2c_client(dev);
struct adm1025_data *data = i2c_get_clientdata(client); struct adm1025_data *data = i2c_get_clientdata(client);
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment