summaryrefslogtreecommitdiffstats
path: root/include/linux/device.h
diff options
context:
space:
mode:
authorStephen Rothwell2008-05-30 02:16:40 +0200
committerGreg Kroah-Hartman2008-05-30 06:10:01 +0200
commit413c239fad68258157f903b3ffd9bfcc53f5e34b (patch)
tree7508df475d5f1ab505e27e98573953c1e394f0c6 /include/linux/device.h
parentFix FRV minimum slab/kmalloc alignment (diff)
downloadkernel-qcow2-linux-413c239fad68258157f903b3ffd9bfcc53f5e34b.tar.gz
kernel-qcow2-linux-413c239fad68258157f903b3ffd9bfcc53f5e34b.tar.xz
kernel-qcow2-linux-413c239fad68258157f903b3ffd9bfcc53f5e34b.zip
driver-core: prepare for 2.6.27 api change by adding dev_set_name
Create the dev_set_name function now so that various subsystems can start changing over to it before other changes in 2.6.27 will make it compulsory. Cc: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/device.h')
-rw-r--r--include/linux/device.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index 14616e80213c..6a2d04c011bc 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -385,6 +385,9 @@ static inline const char *dev_name(struct device *dev)
return dev->bus_id;
}
+extern int dev_set_name(struct device *dev, const char *name, ...)
+ __attribute__((format(printf, 2, 3)));
+
#ifdef CONFIG_NUMA
static inline int dev_to_node(struct device *dev)
{