summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/Kconfig2
-rw-r--r--commands/dhrystone.c2
-rw-r--r--commands/time.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/commands/Kconfig b/commands/Kconfig
index 03ddfc8870..1667e50cc6 100644
--- a/commands/Kconfig
+++ b/commands/Kconfig
@@ -746,7 +746,7 @@ config CMD_SAVEENV
config CMD_SETENV
tristate
default y
- depends on !CONFIG_SHELL_NONE
+ depends on !SHELL_NONE
prompt "setenv"
help
Set environment variable
diff --git a/commands/dhrystone.c b/commands/dhrystone.c
index 154910e5d0..17efa9c099 100644
--- a/commands/dhrystone.c
+++ b/commands/dhrystone.c
@@ -15,7 +15,7 @@
#include <command.h>
#include <errno.h>
#include <clock.h>
-#include <asm-generic/div64.h>
+#include <linux/math64.h>
#include <malloc.h>
#include <stdio.h> /* for strcpy, strcmp */
diff --git a/commands/time.c b/commands/time.c
index 29000d96d8..25ba2da15e 100644
--- a/commands/time.c
+++ b/commands/time.c
@@ -1,7 +1,7 @@
#include <common.h>
#include <command.h>
#include <clock.h>
-#include <asm-generic/div64.h>
+#include <linux/math64.h>
#include <malloc.h>
static int do_time(int argc, char *argv[])