From a07438302eac1eb8eb6831366d2e36dd14489f4b Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Mon, 25 Jul 2011 22:07:05 +0000 Subject: Enforce compile-time errors in satamv and atahp for non-x86 targets Satamv and atahpt require PCI port I/O which isn't currently supported on any architecture except x86/x86_64. Generate the same compiler error as other programmer drivers. Corresponding to flashrom svn r1388. Signed-off-by: Andrew Morgan Acked-by: Carl-Daniel Hailfinger --- atahpt.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'atahpt.c') diff --git a/atahpt.c b/atahpt.c index 2bf4a114..de888b0c 100644 --- a/atahpt.c +++ b/atahpt.c @@ -18,6 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#if defined(__i386__) || defined(__x86_64__) + #include #include #include "flash.h" @@ -77,3 +79,7 @@ uint8_t atahpt_chip_readb(const chipaddr addr) OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR); return INB(io_base_addr + BIOS_ROM_DATA); } + +#else +#error PCI port I/O access is not supported on this architecture yet. +#endif -- cgit v1.2.3