Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 290
b: refs/heads/master
c: 1d66c64
h: refs/heads/master
v: v3
  • Loading branch information
Jean Delvare authored and Greg KH committed Apr 19, 2005
1 parent c4fcdc1 commit cb943e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 86b5ac878d4a63c772d03c5017b72cc799a8f2f2
refs/heads/master: 1d66c64c3cee10a465cd3f8bd9191bbeb718f650
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/chips/it87.c
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ static ssize_t show_alarms(struct device *dev, char *buf)
struct it87_data *data = it87_update_device(dev);
return sprintf(buf,"%d\n", ALARMS_FROM_REG(data->alarms));
}
static DEVICE_ATTR(alarms, S_IRUGO | S_IWUSR, show_alarms, NULL);
static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);

static ssize_t
show_vrm_reg(struct device *dev, char *buf)
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/chips/via686a.c
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ static ssize_t show_alarms(struct device *dev, char *buf) {
struct via686a_data *data = via686a_update_device(dev);
return sprintf(buf,"%d\n", ALARMS_FROM_REG(data->alarms));
}
static DEVICE_ATTR(alarms, S_IRUGO | S_IWUSR, show_alarms, NULL);
static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);

/* The driver. I choose to use type i2c_driver, as at is identical to both
smbus_driver and isa_driver, and clients could be of either kind */
Expand Down

0 comments on commit cb943e8

Please sign in to comment.