diff options
author | Gabe Black <gabeblack@google.com> | 2013-01-18 15:14:03 -0800 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-03-12 23:56:43 +0100 |
commit | e0c974185c32a89206cb3037f9a9f35aa0dd82d7 (patch) | |
tree | da1c0b5d9bfca4db9f78e8630a738b1e2840985d /payloads/libpayload/drivers/video | |
parent | 2c2c4fae2221f87aeff88162fa3216f3a91af793 (diff) |
libpayload: Remove unnecessary include of arch/msr.h
The functions defined in that header aren't used anywhere in the actual code,
and that include breaks things on ARM.
Built for ARM with COREBOOT_VIDEO_CONSOLE turned on and saw compiler
errors go away.
Change-Id: I56d6fe5e00c8fccda6e31ef8752326bd36398e74
Signed-off-by: Gabe Black <gabeblack@google.com>
Reviewed-on: http://review.coreboot.org/2656
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'payloads/libpayload/drivers/video')
-rw-r--r-- | payloads/libpayload/drivers/video/corebootfb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/payloads/libpayload/drivers/video/corebootfb.c b/payloads/libpayload/drivers/video/corebootfb.c index 5672d1f375..faf9e2c0f8 100644 --- a/payloads/libpayload/drivers/video/corebootfb.c +++ b/payloads/libpayload/drivers/video/corebootfb.c @@ -32,7 +32,6 @@ #include <coreboot_tables.h> #include <pci.h> #include <video_console.h> -#include <arch/msr.h> #include "font8x16.h" struct video_console coreboot_video_console; |