diff options
author | Keith Hui <buurin@gmail.com> | 2017-08-10 20:06:13 -0400 |
---|---|---|
committer | Arthur Heymans <arthur@aheymans.xyz> | 2017-08-15 20:59:43 +0000 |
commit | 0fda9f54c774b73efbd89ae20ed10136fa55dc96 (patch) | |
tree | 116257f5be15c50671b31b80d9e12dfc9a7001f8 /src | |
parent | 69b800bf9dedcf196a3f789a9fabfe45e98f2c6f (diff) |
440BX boards: Drop more unused #includes from romstage
Romstages of many 440BX boards included headers that are redundant.
Remove them as part of a bigger cleanup effort.
This finishes off what began in https://review.coreboot.org/20693.
Change-Id: I102a4f6e492eb607b7f88d4c6e15072a8b7fdc46
Signed-off-by: Keith Hui <buurin@gmail.com>
Reviewed-on: https://review.coreboot.org/20952
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/azza/pt-6ibd/romstage.c | 1 | ||||
-rw-r--r-- | src/mainboard/compaq/deskpro_en_sff_p600/romstage.c | 4 | ||||
-rw-r--r-- | src/mainboard/msi/ms6119/romstage.c | 1 | ||||
-rw-r--r-- | src/mainboard/msi/ms6156/romstage.c | 1 | ||||
-rw-r--r-- | src/mainboard/soyo/sy-6ba-plus-iii/romstage.c | 1 |
5 files changed, 0 insertions, 8 deletions
diff --git a/src/mainboard/azza/pt-6ibd/romstage.c b/src/mainboard/azza/pt-6ibd/romstage.c index c4cfbec54d..61a2767986 100644 --- a/src/mainboard/azza/pt-6ibd/romstage.c +++ b/src/mainboard/azza/pt-6ibd/romstage.c @@ -14,7 +14,6 @@ * GNU General Public License for more details. */ -#include <stdint.h> #include <device/pci_def.h> #include <device/pnp_def.h> #include <console/console.h> diff --git a/src/mainboard/compaq/deskpro_en_sff_p600/romstage.c b/src/mainboard/compaq/deskpro_en_sff_p600/romstage.c index 7a59b1bde4..c93dc20c24 100644 --- a/src/mainboard/compaq/deskpro_en_sff_p600/romstage.c +++ b/src/mainboard/compaq/deskpro_en_sff_p600/romstage.c @@ -14,15 +14,11 @@ * GNU General Public License for more details. */ -#include <stdint.h> #include <device/pci_def.h> -#include <arch/io.h> #include <device/pnp_def.h> -#include <stdlib.h> #include <console/console.h> #include <southbridge/intel/i82371eb/i82371eb.h> #include <northbridge/intel/i440bx/raminit.h> -#include <delay.h> #include <cpu/x86/bist.h> #include <cpu/intel/romstage.h> /* FIXME: This should be PC97307 (but it's buggy at the moment)! */ diff --git a/src/mainboard/msi/ms6119/romstage.c b/src/mainboard/msi/ms6119/romstage.c index 7791e9142f..809f1f6709 100644 --- a/src/mainboard/msi/ms6119/romstage.c +++ b/src/mainboard/msi/ms6119/romstage.c @@ -14,7 +14,6 @@ * GNU General Public License for more details. */ -#include <stdint.h> #include <device/pci_def.h> #include <device/pnp_def.h> #include <console/console.h> diff --git a/src/mainboard/msi/ms6156/romstage.c b/src/mainboard/msi/ms6156/romstage.c index cf39f52d2c..37200e5363 100644 --- a/src/mainboard/msi/ms6156/romstage.c +++ b/src/mainboard/msi/ms6156/romstage.c @@ -14,7 +14,6 @@ * GNU General Public License for more details. */ -#include <stdint.h> #include <device/pci_def.h> #include <device/pnp_def.h> #include <console/console.h> diff --git a/src/mainboard/soyo/sy-6ba-plus-iii/romstage.c b/src/mainboard/soyo/sy-6ba-plus-iii/romstage.c index 770a7cb654..be79c7503b 100644 --- a/src/mainboard/soyo/sy-6ba-plus-iii/romstage.c +++ b/src/mainboard/soyo/sy-6ba-plus-iii/romstage.c @@ -14,7 +14,6 @@ * GNU General Public License for more details. */ -#include <stdint.h> #include <device/pci_def.h> #include <device/pnp_def.h> #include <console/console.h> |