diff options
author | Idwer Vollering <vidwer@gmail.com> | 2014-03-29 13:13:10 +0100 |
---|---|---|
committer | Idwer Vollering <vidwer@gmail.com> | 2014-04-06 18:18:46 +0200 |
commit | fa02e16c7651a453702192e5a4c8f47f3d372b94 (patch) | |
tree | b11f18912d08b2ac86c13186ea93d34ea28700c5 /src/mainboard/asus/f2a85-m/mptable.c | |
parent | 6181e3dcd7202b2460aad91237f314b8dacf686a (diff) | |
download | coreboot-fa02e16c7651a453702192e5a4c8f47f3d372b94.tar.xz |
asus/f2a85-m: Sanitize #includes
Based on the same reasoning as this commit:
1d87dac hp/pavilion_m6_1035dx: Sanitize #includes
Change-Id: I383f79b5392ee1ca244e403f755213fa7b32c0af
Signed-off-by: Idwer Vollering <vidwer@gmail.com>
Reviewed-on: http://review.coreboot.org/5420
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/mainboard/asus/f2a85-m/mptable.c')
-rw-r--r-- | src/mainboard/asus/f2a85-m/mptable.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/mainboard/asus/f2a85-m/mptable.c b/src/mainboard/asus/f2a85-m/mptable.c index 97df048138..fc16211292 100644 --- a/src/mainboard/asus/f2a85-m/mptable.c +++ b/src/mainboard/asus/f2a85-m/mptable.c @@ -17,18 +17,16 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include <console/console.h> -#include <arch/smp/mpspec.h> -#include <device/pci.h> +#include <arch/cpu.h> #include <arch/io.h> -#include <string.h> -#include <stdint.h> +#include <arch/smp/mpspec.h> #include <cpu/amd/amdfam15.h> -#include <arch/cpu.h> #include <cpu/x86/lapic.h> +#include <device/pci.h> +#include <stdint.h> +#include <string.h> #include "southbridge/amd/agesa/hudson/hudson.h" /* pm_ioread() */ - //-#define IO_APIC_ID CONFIG_MAX_PHYSICAL_CPUS + 1 #define IO_APIC_ID CONFIG_MAX_CPUS extern u8 bus_hudson[6]; |