diff options
author | David Hendricks <dhendrix@google.com> | 2012-02-13 00:35:35 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2012-02-13 00:35:35 +0000 |
commit | 8bed718b50c3d193e79bb1edd762dbf4c4f2d459 (patch) | |
tree | 95734984a923e7da1c7e20d39c5202a6a715e703 /hwaccess.c | |
parent | e3c882a5d37a1cd80987df154dc7c43b1587a0a1 (diff) | |
download | flashrom-8bed718b50c3d193e79bb1edd762dbf4c4f2d459.zip flashrom-8bed718b50c3d193e79bb1edd762dbf4c4f2d459.tar.gz |
Support compilation for the ARM architecture (little-endian only)
Note: The internal programmer will abort during processor check. This is
intentional.
The other hardware drivers (except those using port I/O) should work.
Tested-by: Timo Juhani Lindfors <timo.lindfors@iki.fi>
Corresponding to flashrom svn r1492.
Signed-off-by: David Hendricks <dhendrix@google.com>
Acked-by: David Hendricks <dhendrix@google.com>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Diffstat (limited to 'hwaccess.c')
-rw-r--r-- | hwaccess.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -116,6 +116,20 @@ void release_io_perms(void) { } +#elif defined (__arm__) + +static inline void sync_primitive(void) +{ +} + +void get_io_perms(void) +{ +} + +void release_io_perms(void) +{ +} + #else #error Unknown architecture |