diff options
author | Fengguang Wu <[email protected]> | 2012-10-19 13:56:55 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2012-10-19 14:07:47 -0700 |
commit | bac716966094e39c8027428993a57b79f2dd6c97 (patch) | |
tree | 468a1a1c9ec62272deba7a2213826a1a18f172ff | |
parent | bbc2e3ef87851bc5430b2b4cf4ca3a2f29baeda6 (diff) |
firmware/memmap: avoid type conflicts with the generic memmap_init()
Fix this build error:
drivers/firmware/memmap.c:240:19: error: conflicting types for 'memmap_init'
arch/ia64/include/asm/pgtable.h:565:17: note: previous declaration of 'memmap_init' was here
Signed-off-by: Fengguang Wu <[email protected]>
Cc: Bernhard Walle <[email protected]>
Cc: Glauber Costa <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/firmware/memmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firmware/memmap.c b/drivers/firmware/memmap.c index c1cdc9236666..90723e65b081 100644 --- a/drivers/firmware/memmap.c +++ b/drivers/firmware/memmap.c @@ -237,7 +237,7 @@ static ssize_t memmap_attr_show(struct kobject *kobj, * firmware_map_add() or firmware_map_add_early() afterwards, the entries * are not added to sysfs. */ -static int __init memmap_init(void) +static int __init firmware_memmap_init(void) { struct firmware_map_entry *entry; @@ -246,5 +246,5 @@ static int __init memmap_init(void) return 0; } -late_initcall(memmap_init); +late_initcall(firmware_memmap_init); |