diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/smbios.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/smbios.c b/lib/smbios.c index 1e10fa84207..b1171f544a8 100644 --- a/lib/smbios.c +++ b/lib/smbios.c @@ -18,6 +18,16 @@ #endif /** + * Function prototype to write a specific type of SMBIOS structure + * + * @addr: start address to write the structure + * @handle: the structure's handle, a unique 16-bit number + * @node: node containing the information to write (ofnode_null() if none) + * @return: size of the structure + */ +typedef int (*smbios_write_type)(ulong *addr, int handle, ofnode node); + +/** * struct smbios_write_method - Information about a table-writing function * * @write: Function to call |
