Re: [PATCH 2.6.10-rc1 3/4] driver-model: detach_state functions renamed
From: Tejun Heo (tj_at_home-tj.org)
Date: 11/04/04
- Previous message: Tejun Heo: "Re: [PATCH 2.6.10-rc1 1/4] driver-model: sysctl node dev.autoattach"
- In reply to: Tejun Heo: "[PATCH 2.6.10-rc1 0/4] driver-model: manual device attach"
- Next in thread: Tejun Heo: "Re: [PATCH 2.6.10-rc1 4/4] driver-model: attach/detach sysfs node implemented"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Thu, 4 Nov 2004 16:45:52 +0900 To: rusty@rustcorp.com.au, mochel@osdl.org, greg@kroah.com
ma_03_detach_state_fn_rename.patch
This patch renames detach_{show,store}() functions which is used for
detach_state device interface node to detach_state_{show,store}().
Signed-off-by: Tejun Heo <tj@home-tj.org>
Index: linux-export/drivers/base/interface.c
===================================================================
--- linux-export.orig/drivers/base/interface.c 2004-11-04 10:25:59.000000000 +0900
+++ linux-export/drivers/base/interface.c 2004-11-04 11:04:15.000000000 +0900
@@ -27,12 +27,13 @@
* driver's suspend method.
*/
-static ssize_t detach_show(struct device * dev, char * buf)
+static ssize_t detach_state_show(struct device * dev, char * buf)
{
return sprintf(buf, "%u\n", dev->detach_state);
}
-static ssize_t detach_store(struct device * dev, const char * buf, size_t n)
+static ssize_t detach_state_store(struct device * dev,
+ const char * buf, size_t n)
{
u32 state;
state = simple_strtoul(buf, NULL, 10);
@@ -42,7 +43,7 @@ static ssize_t detach_store(struct devic
return n;
}
-static DEVICE_ATTR(detach_state, 0644, detach_show, detach_store);
+static DEVICE_ATTR(detach_state, 0644, detach_state_show, detach_state_store);
struct attribute * dev_default_attrs[] = {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Previous message: Tejun Heo: "Re: [PATCH 2.6.10-rc1 1/4] driver-model: sysctl node dev.autoattach"
- In reply to: Tejun Heo: "[PATCH 2.6.10-rc1 0/4] driver-model: manual device attach"
- Next in thread: Tejun Heo: "Re: [PATCH 2.6.10-rc1 4/4] driver-model: attach/detach sysfs node implemented"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|