summaryrefslogtreecommitdiffstats
path: root/src/include/dev.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/dev.h')
-rw-r--r--src/include/dev.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/dev.h b/src/include/dev.h
index 327a27143..4f114496e 100644
--- a/src/include/dev.h
+++ b/src/include/dev.h
@@ -201,10 +201,10 @@ struct device_driver {
#define __device_driver \
__attribute__ (( used, __section__ ( ".drivers.device" ) ))
-#define DRIVER(_name,_name_string,_type_driver,_bus_driver,_bus_info, \
+#define DRIVER(_name,_type_driver,_bus_driver,_bus_info, \
_probe,_disable) \
- static struct device_driver _name __device_driver = { \
- .name = _name_string, \
+ static struct device_driver device_ ## _bus_info __device_driver = { \
+ .name = _name, \
.type_driver = &_type_driver, \
.bus_driver = &_bus_driver, \
.bus_driver_info = ( struct bus_driver_info * ) &_bus_info, \