aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/message
diff options
context:
space:
mode:
authorYani Ioannou <yani.ioannou@gmail.com>2005-06-24 01:02:28 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-24 03:05:29 -0400
commit3e05d2b8d3dd34b0237f489e991ed081cb0bf007 (patch)
treed0e18c3c7ed42891bb67eb85c0cbbc34517921f6 /drivers/message
parentf52bdbe9fcf2453d402376e22de1eca6dfc96890 (diff)
[PATCH] tpm: device attribute fixes
This patch updates all the device attribute callbacks that weren't updated with the new parameter, I guess because they weren't in Greg's tree (including drivers/pcmcia/ds.c). Without the patch these callbacks are probably broken (and generate a warning along the lines of "assignment from incompatible pointer type"). Please see http://lkml.org/lkml/2005/5/19/40 for the scripts I used to update the attributes automatically. Signed-off-by: Yani Ioannou <yani.ioannou@gmail.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/message')
-rw-r--r--drivers/message/i2o/bus-osm.c2
-rw-r--r--drivers/message/i2o/exec-osm.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/message/i2o/bus-osm.c b/drivers/message/i2o/bus-osm.c
index d43c35894ae9..151b228e1cb3 100644
--- a/drivers/message/i2o/bus-osm.c
+++ b/drivers/message/i2o/bus-osm.c
@@ -59,7 +59,7 @@ static int i2o_bus_scan(struct i2o_device *dev)
59 * 59 *
60 * Returns count. 60 * Returns count.
61 */ 61 */
62static ssize_t i2o_bus_store_scan(struct device *d, const char *buf, 62static ssize_t i2o_bus_store_scan(struct device *d, struct device_attribute *attr, const char *buf,
63 size_t count) 63 size_t count)
64{ 64{
65 struct i2o_device *i2o_dev = to_i2o_device(d); 65 struct i2o_device *i2o_dev = to_i2o_device(d);
diff --git a/drivers/message/i2o/exec-osm.c b/drivers/message/i2o/exec-osm.c
index 1b7389876e70..bda2c62648ba 100644
--- a/drivers/message/i2o/exec-osm.c
+++ b/drivers/message/i2o/exec-osm.c
@@ -261,7 +261,7 @@ static int i2o_msg_post_wait_complete(struct i2o_controller *c, u32 m,
261 * 261 *
262 * Returns number of bytes printed into buffer. 262 * Returns number of bytes printed into buffer.
263 */ 263 */
264static ssize_t i2o_exec_show_vendor_id(struct device *d, char *buf) 264static ssize_t i2o_exec_show_vendor_id(struct device *d, struct device_attribute *attr, char *buf)
265{ 265{
266 struct i2o_device *dev = to_i2o_device(d); 266 struct i2o_device *dev = to_i2o_device(d);
267 u16 id; 267 u16 id;
@@ -281,7 +281,7 @@ static ssize_t i2o_exec_show_vendor_id(struct device *d, char *buf)
281 * 281 *
282 * Returns number of bytes printed into buffer. 282 * Returns number of bytes printed into buffer.
283 */ 283 */
284static ssize_t i2o_exec_show_product_id(struct device *d, char *buf) 284static ssize_t i2o_exec_show_product_id(struct device *d, struct device_attribute *attr, char *buf)
285{ 285{
286 struct i2o_device *dev = to_i2o_device(d); 286 struct i2o_device *dev = to_i2o_device(d);
287 u16 id; 287 u16 id;