aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
authorEduardo Habkost <ehabkost@redhat.com>2020-12-10 10:10:42 -0500
committerKevin O'Connor <kevin@koconnor.net>2021-12-18 11:39:12 -0500
commit97f6c5b0246225c5b5341e13af6e5578ccedb190 (patch)
tree461fb5df98675168453a5d8dddf91e58fc52b389 /src/util.h
parent7b02616560f908a2d34009d87ceed0306a851420 (diff)
downloadseabios-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.h b/src/util.h
index 652ca6b1..f761271c 100644
--- a/src/util.h
+++ b/src/util.h
@@ -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);