diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-01-13 12:49:04 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-01-13 12:49:04 -0800 |
commit | 928b3f12e5fea9d201bbc029d8d537ba7cc14fe7 (patch) | |
tree | 3f496d22dc052cff9fb31cfe93aee54f2fd99356 /drivers | |
parent | 77a76b04d2be1c45b8fd746b7ef754525029340c (diff) | |
parent | 0f7f2f0c0fcbe5e2bcba707a628ebaedfe2be4b4 (diff) |
Merge tag 'please-pull-fixefi' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux
Pull ia64 build fixes from Tony Luck:
"The ARM guys broke the ia64 build ... but gave me fixes, so it's all
good now"
* tag 'please-pull-fixefi' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux:
efi: include asm/early_ioremap.h not asm/efi.h to get early_memremap
ia64: split off early_ioremap() declarations into asm/early_ioremap.h
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/firmware/efi/efi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c index cffa89b3317b..2cd37dad67a6 100644 --- a/drivers/firmware/efi/efi.c +++ b/drivers/firmware/efi/efi.c @@ -25,7 +25,7 @@ #include <linux/io.h> #include <linux/platform_device.h> -#include <asm/efi.h> +#include <asm/early_ioremap.h> struct efi __read_mostly efi = { .mps = EFI_INVALID_TABLE_ADDR, |