summaryrefslogtreecommitdiff
path: root/recipes/u-boot/u-boot-git/omapzoom2/inline-fix.patch
blob: 7bcfa8aec34830141de7678e33e6aecbb66f6e52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Index: git/common/cmd_voltage.c
===================================================================
--- git.orig/common/cmd_voltage.c
+++ git/common/cmd_voltage.c
@@ -23,8 +23,8 @@
 #if defined(CONFIG_CMD_VOLTAGE)
 
 /* To use, the board should define its own voltag_info function */
-void inline __voltage_info (void) {}
-void inline voltage_info (void) __attribute__((weak, alias("__voltage_info")));
+void __voltage_info (void) {}
+void voltage_info (void) __attribute__((weak, alias("__voltage_info")));
 
 int do_voltage (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 {