diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2020-12-10 10:10:42 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-12-18 11:39:12 -0500 |
commit | 97f6c5b0246225c5b5341e13af6e5578ccedb190 (patch) | |
tree | 461fb5df98675168453a5d8dddf91e58fc52b389 /src/util.h | |
parent | 7b02616560f908a2d34009d87ceed0306a851420 (diff) | |
download | seabios-97f6c5b0246225c5b5341e13af6e5578ccedb190.tar.gz |
smbios: Rename code specific for SMBIOS 2.1 entry points
Rename copy_smbios(), smbios_next(), SMBIOS_SIGNATURE,
smbios_entry_point, and SMBiosAddr, to indicate they refer to
SMBIOS 2.1 entry points.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -87,8 +87,8 @@ void *find_acpi_table(u32 signature); u32 find_resume_vector(void); void acpi_reboot(void); void find_acpi_features(void); -extern struct smbios_entry_point *SMBiosAddr; -void copy_smbios(void *pos); +extern struct smbios_21_entry_point *SMBios21Addr; +void copy_smbios_21(void *pos); void display_uuid(void); void copy_table(void *pos); void smbios_setup(void); |