summaryrefslogtreecommitdiffstats
path: root/common/boot.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2017-06-13 16:04:40 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2017-06-13 16:04:40 +0200
commitb2cb923506b6532ecd06a48e57757d24ccf4940b (patch)
tree9a8c76f8c65b9086f58ea1d43d84fa9e093d9a3c /common/boot.c
parent7917ad2b03127f29b463b4d72dc063491ee41a87 (diff)
downloadbarebox-b2cb923506b6532ecd06a48e57757d24ccf4940b.tar.gz
barebox-b2cb923506b6532ecd06a48e57757d24ccf4940b.tar.xz
Revert "globalvar: make globalvar functions more consistent"
This reverts commit 1b4a05c9263ae26083526acfabdea1ef96531a1d.
Diffstat (limited to 'common/boot.c')
-rw-r--r--common/boot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/boot.c b/common/boot.c
index a2d27d1593..cef3d5e514 100644
--- a/common/boot.c
+++ b/common/boot.c
@@ -123,7 +123,7 @@ void boot_set_watchdog_timeout(unsigned int timeout)
static int init_boot_watchdog_timeout(void)
{
- return globalvar_add_simple_uint32("boot.watchdog_timeout",
+ return globalvar_add_simple_int("boot.watchdog_timeout",
&boot_watchdog_timeout, "%u");
}
late_initcall(init_boot_watchdog_timeout);