diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2010-01-04 10:21:11 +0100 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2010-02-01 17:25:32 +0100 |
commit | 922bb41a47e390ee3367fc41081d4470cac1202d (patch) | |
tree | a0fb507db0cb768f2d77adf26d6be5c9057d2187 /arch/arm/cpu/cpu.c | |
parent | 88351d2e4bcf25fef3818c951e89180c764389ed (diff) | |
download | barebox-922bb41a47e390ee3367fc41081d4470cac1202d.tar.gz |
remove typedef cmd_tbl_t and replace it with struct command
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/cpu/cpu.c')
-rw-r--r-- | arch/arm/cpu/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/cpu.c b/arch/arm/cpu/cpu.c index 501e9b99e7..1b8fc970de 100644 --- a/arch/arm/cpu/cpu.c +++ b/arch/arm/cpu/cpu.c @@ -162,7 +162,7 @@ int cleanup_before_linux (void) * required. */ -static int do_icache(cmd_tbl_t *cmdtp, int argc, char *argv[]) +static int do_icache(struct command *cmdtp, int argc, char *argv[]) { if (argc == 1) { printf("icache is %sabled\n", icache_status() ? "en" : "dis"); |