diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2013-01-25 19:33:58 -0600 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-02-07 00:10:37 -0500 |
commit | 38b24dba0672c9fa0b9eeb63848dc3e5a8ef44e6 (patch) | |
tree | b8f85c19ef9eb700d6dca5478b154134248af309 /src/util.h | |
parent | 5c8dd968977460ed783cb06f216eefb6019a7776 (diff) | |
download | seabios-38b24dba0672c9fa0b9eeb63848dc3e5a8ef44e6.tar.gz |
Export copy_smbios() from biostables.c
Yes, copy_table() would invoke it, but CSM will *only* use it for SMBIOS
tables and however much we trick the compiler by gratuitously checking
the table signature right before calling copy_table(), it still doesn't
seem to notice that fact. And emits code for all the other three cases
we don't care about.
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -333,6 +333,7 @@ void coreboot_preinit(void); void coreboot_cbfs_init(void); // biostable.c +void copy_smbios(void *pos); void copy_table(void *pos); // vgahooks.c |