提交 1f21782e 编写于 作者: A Adrian Bunk 提交者: Greg Kroah-Hartman

Driver core: proper prototype for drivers/base/init.c:driver_init()

Add a prototype for driver_init() in include/linux/device.h.

Also remove a static function of the same name in drivers/acpi/ibm_acpi.c to
ibm_acpi_driver_init() to fix the namespace collision.
Signed-off-by: NAdrian Bunk <bunk@stusta.de>
Acked-by: NHenrique de Moraes Holschuh <hmh@hmh.eng.br>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 542cfce6
...@@ -352,7 +352,7 @@ static char *next_cmd(char **cmds) ...@@ -352,7 +352,7 @@ static char *next_cmd(char **cmds)
return start; return start;
} }
static int driver_init(void) static int ibm_acpi_driver_init(void)
{ {
printk(IBM_INFO "%s v%s\n", IBM_DESC, IBM_VERSION); printk(IBM_INFO "%s v%s\n", IBM_DESC, IBM_VERSION);
printk(IBM_INFO "%s\n", IBM_URL); printk(IBM_INFO "%s\n", IBM_URL);
...@@ -1605,7 +1605,7 @@ static int fan_write(char *buf) ...@@ -1605,7 +1605,7 @@ static int fan_write(char *buf)
static struct ibm_struct ibms[] = { static struct ibm_struct ibms[] = {
{ {
.name = "driver", .name = "driver",
.init = driver_init, .init = ibm_acpi_driver_init,
.read = driver_read, .read = driver_read,
}, },
{ {
......
...@@ -433,6 +433,8 @@ static inline int device_is_registered(struct device *dev) ...@@ -433,6 +433,8 @@ static inline int device_is_registered(struct device *dev)
return dev->is_registered; return dev->is_registered;
} }
void driver_init(void);
/* /*
* High level routines for use by the bus drivers * High level routines for use by the bus drivers
*/ */
......
...@@ -53,6 +53,7 @@ ...@@ -53,6 +53,7 @@
#include <linux/utsrelease.h> #include <linux/utsrelease.h>
#include <linux/pid_namespace.h> #include <linux/pid_namespace.h>
#include <linux/compile.h> #include <linux/compile.h>
#include <linux/device.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/bugs.h> #include <asm/bugs.h>
...@@ -94,7 +95,6 @@ extern void pidmap_init(void); ...@@ -94,7 +95,6 @@ extern void pidmap_init(void);
extern void prio_tree_init(void); extern void prio_tree_init(void);
extern void radix_tree_init(void); extern void radix_tree_init(void);
extern void free_initmem(void); extern void free_initmem(void);
extern void driver_init(void);
extern void prepare_namespace(void); extern void prepare_namespace(void);
#ifdef CONFIG_ACPI #ifdef CONFIG_ACPI
extern void acpi_early_init(void); extern void acpi_early_init(void);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册