diff options
author | Simon Glass <sjg@chromium.org> | 2014-11-12 22:42:16 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-21 07:34:13 +0100 |
commit | 378a8634ad12981779c24e6ec29619deff88d19b (patch) | |
tree | 1a056bb797d1c3d693592d8825d69b9a04d01bbe /arch/x86/cpu/coreboot/ipchecksum.c | |
parent | 2b6051541b562b72d2cf784376a84552da18318d (diff) |
x86: Tidy up coreboot header usage
There is no need to explicitly write 'arch-coreboot' when including headers,
as when the arch directory points to coreboot the correct files will be
used.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/cpu/coreboot/ipchecksum.c')
-rw-r--r-- | arch/x86/cpu/coreboot/ipchecksum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/cpu/coreboot/ipchecksum.c b/arch/x86/cpu/coreboot/ipchecksum.c index 57733d8f0d..5f6c00945b 100644 --- a/arch/x86/cpu/coreboot/ipchecksum.c +++ b/arch/x86/cpu/coreboot/ipchecksum.c @@ -30,7 +30,7 @@ */ #include <compiler.h> -#include <asm/arch-coreboot/ipchecksum.h> +#include <asm/arch/ipchecksum.h> unsigned short ipchksum(const void *vptr, unsigned long nbytes) { |