diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2013-06-04 17:34:35 +0200 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-06-04 17:56:35 +0200 |
commit | c4e07bb50345f1b95ae2f80fc42694d3533c628e (patch) | |
tree | 50a352906a905c42535819cbe7ec4a6ef991c5be /src/mainboard/iei/pm-lx2-800-r10 | |
parent | 4eb5aa2894b1115909a672470bb22c7804c20561 (diff) | |
download | coreboot-c4e07bb50345f1b95ae2f80fc42694d3533c628e.tar.xz |
AMD Northbridge LX: convert spd_read_byte() to non-static version
Change-Id: Ie329606852dfd7109acb694e9a9ff851b023cc63
Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Reviewed-on: http://review.coreboot.org/3369
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/mainboard/iei/pm-lx2-800-r10')
-rw-r--r-- | src/mainboard/iei/pm-lx2-800-r10/romstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/iei/pm-lx2-800-r10/romstage.c b/src/mainboard/iei/pm-lx2-800-r10/romstage.c index 0f2a304852..07091fbb60 100644 --- a/src/mainboard/iei/pm-lx2-800-r10/romstage.c +++ b/src/mainboard/iei/pm-lx2-800-r10/romstage.c @@ -38,7 +38,7 @@ #define SERIAL_DEV PNP_DEV(0x2e, SMSCSUPERIO_SP1) -static inline int spd_read_byte(unsigned int device, unsigned int address) +int spd_read_byte(unsigned int device, unsigned int address) { /* Only DIMM0 is available. */ if (device != DIMM0) |