]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
smbios: Move smbios_write_type to the C file
authorSimon Glass <sjg@chromium.org>
Fri, 5 Feb 2021 04:17:14 +0000 (21:17 -0700)
committerBin Meng <bmeng.cn@gmail.com>
Sat, 6 Feb 2021 11:18:41 +0000 (19:18 +0800)
This type is not used outside the smbios.c file so there is no need for it
to be in the header file. Move it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
include/smbios.h
lib/smbios.c

index 1846607c3cfa4ef2755bdc85b23c46f5717f634a..fc69188a8fe28b83ab6cfbfd056dd4ecf4f62fbb 100644 (file)
@@ -219,16 +219,6 @@ static inline void fill_smbios_header(void *table, int type,
        header->handle = handle;
 }
 
-/**
- * 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);
-
 /**
  * write_smbios_table() - Write SMBIOS table
  *
index 1e10fa842072c3ea80c05900fefe8500dfff6316..b1171f544a88e39b82831ebeba5805f3f8be1531 100644 (file)
 #include <dm/uclass-internal.h>
 #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
  *