diff options
author | Zheng Bao <fishbaozi@gmail.com> | 2013-02-07 17:30:23 +0800 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2013-02-11 21:01:47 +0100 |
commit | 600784e8b9d11dd1e1afc1918e6eda004ac69de4 (patch) | |
tree | 1faa93a7b7319266d274709a1142f875386f3c74 /src/southbridge/amd | |
parent | 8cc846897132f6d6baa49118005815aefb5f560f (diff) |
spi.h: Rename the spi.h to spi-generic.h
Since there are and will be other files in nb/sb folders, we change
the general spi.h to a file name which is not easy to be duplicated.
Change-Id: I6548a81206caa608369be044747bde31e2b08d1a
Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Signed-off-by: zbao <fishbaozi@gmail.com>
Reviewed-on: http://review.coreboot.org/2309
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/southbridge/amd')
-rw-r--r-- | src/southbridge/amd/agesa/hudson/spi.c | 2 | ||||
-rw-r--r-- | src/southbridge/amd/cimx/sb800/SBPLATFORM.h | 2 | ||||
-rw-r--r-- | src/southbridge/amd/cimx/sb800/spi.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/southbridge/amd/agesa/hudson/spi.c b/src/southbridge/amd/agesa/hudson/spi.c index aebe4b5cec..dabf8b7a43 100644 --- a/src/southbridge/amd/agesa/hudson/spi.c +++ b/src/southbridge/amd/agesa/hudson/spi.c @@ -20,7 +20,7 @@ #include <stdlib.h> #include <string.h> #include <arch/io.h> -#include <spi.h> +#include <spi-generic.h> #include <device/device.h> #include <device/pci.h> #include <device/pci_ops.h> diff --git a/src/southbridge/amd/cimx/sb800/SBPLATFORM.h b/src/southbridge/amd/cimx/sb800/SBPLATFORM.h index 1966eb469c..a8c3b61002 100644 --- a/src/southbridge/amd/cimx/sb800/SBPLATFORM.h +++ b/src/southbridge/amd/cimx/sb800/SBPLATFORM.h @@ -163,7 +163,7 @@ typedef union _PCI_ADDR { #include "vendorcode/amd/cimx/sb800/AMDSBLIB.h" #if CONFIG_HAVE_ACPI_RESUME -#include "spi.h" +#include <spi-generic.h> #endif #define BIOSRAM_INDEX 0xcd4 diff --git a/src/southbridge/amd/cimx/sb800/spi.c b/src/southbridge/amd/cimx/sb800/spi.c index 46cc7419ba..d4b80f9627 100644 --- a/src/southbridge/amd/cimx/sb800/spi.c +++ b/src/southbridge/amd/cimx/sb800/spi.c @@ -20,7 +20,7 @@ #include <stdlib.h> #include <string.h> #include <arch/io.h> -#include <spi.h> +#include <spi-generic.h> #include <device/device.h> #include <device/pci.h> #include <device/pci_ops.h> |