util/autoport: Use common gpio.c for bd82x6x
In accordance to change I8bd981c4696c174152cf41caefa6c083650d283a change autoport as well, as suggested by Vladimir. Change-Id: I7cdaa779c11fd3f791a3ad213c24d927b5da76b9 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: https://review.coreboot.org/13731 Tested-by: build bot (Jenkins) Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com>
This commit is contained in:
parent
e4f9d5c70a
commit
eb960f1af9
|
@ -40,7 +40,7 @@ func (b bd82x6x) GPIO(ctx Context, inteltool InteltoolData) {
|
||||||
|
|
||||||
AddROMStageFile("gpio.c", "")
|
AddROMStageFile("gpio.c", "")
|
||||||
|
|
||||||
gpio.WriteString(`#include "southbridge/intel/bd82x6x/gpio.h"
|
gpio.WriteString(`#include <southbridge/intel/common/gpio.h>
|
||||||
`)
|
`)
|
||||||
|
|
||||||
adresses := [3][6]int{
|
adresses := [3][6]int{
|
||||||
|
@ -294,7 +294,7 @@ func (b bd82x6x) Scan(ctx Context, addr PCIDevData) {
|
||||||
#include "northbridge/intel/sandybridge/sandybridge.h"
|
#include "northbridge/intel/sandybridge/sandybridge.h"
|
||||||
#include "northbridge/intel/sandybridge/raminit_native.h"
|
#include "northbridge/intel/sandybridge/raminit_native.h"
|
||||||
#include "southbridge/intel/bd82x6x/pch.h"
|
#include "southbridge/intel/bd82x6x/pch.h"
|
||||||
#include "southbridge/intel/bd82x6x/gpio.h"
|
#include <southbridge/intel/common/gpio.h>
|
||||||
#include <arch/cpu.h>
|
#include <arch/cpu.h>
|
||||||
#include <cpu/x86/msr.h>
|
#include <cpu/x86/msr.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue