mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 14:11:15 +02:00
Fix compilation if CONFIG_INTERNAL=no
Change-Id: Id9e07332003832465a0eccf1d89e73d15abb35c0 Signed-off-by: Jonathan Liu <net147@gmail.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/35808 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Tested-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
@ -363,6 +363,7 @@ void *physmap_ro_unaligned(const char *descr, uintptr_t phys_addr, size_t len)
|
||||
return physmap_common(descr, phys_addr, len, PHYSM_RO, PHYSM_NOCLEANUP, PHYSM_EXACT);
|
||||
}
|
||||
|
||||
#if CONFIG_INTERNAL == 1
|
||||
/* MSR abstraction implementations for Linux, OpenBSD, FreeBSD/Dragonfly, OSX, libpayload
|
||||
* and a non-working default implementation on the bottom. See also hwaccess.h for some (re)declarations. */
|
||||
#if defined(__i386__) || defined(__x86_64__)
|
||||
@ -687,3 +688,4 @@ void cleanup_cpu_msr(void)
|
||||
#else // x86
|
||||
/* Does MSR exist on non-x86 architectures? */
|
||||
#endif // arch switches for MSR code
|
||||
#endif // CONFIG_INTERNAL == 1
|
||||
|
Reference in New Issue
Block a user