diff options
author | Wolfgang Denk <wd@denx.de> | 2009-12-06 01:21:28 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-12-07 21:50:18 +0100 |
commit | 4713010adf5beda87410d637ebfc58db0db9a9db (patch) | |
tree | 38a6c9267ecc74344befee0331a040264f9561fe | |
parent | a9f99ab44b473fb394169ba365f8b4380f981584 (diff) | |
download | u-boot-imx-4713010adf5beda87410d637ebfc58db0db9a9db.zip u-boot-imx-4713010adf5beda87410d637ebfc58db0db9a9db.tar.gz u-boot-imx-4713010adf5beda87410d637ebfc58db0db9a9db.tar.bz2 |
trab: fix warning: implicit declaration of function 'disable_vfd'
Signed-off-by: Wolfgang Denk <wd@denx.de>
-rw-r--r-- | cpu/arm920t/s3c24x0/timer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpu/arm920t/s3c24x0/timer.c b/cpu/arm920t/s3c24x0/timer.c index 20cedd4..a27f0e2 100644 --- a/cpu/arm920t/s3c24x0/timer.c +++ b/cpu/arm920t/s3c24x0/timer.c @@ -205,6 +205,8 @@ void reset_cpu(ulong ignored) struct s3c24x0_watchdog *watchdog; #ifdef CONFIG_TRAB + extern void disable_vfd(void); + disable_vfd(); #endif |