diff options
author | wdenk <wdenk> | 2004-02-27 08:20:54 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-02-27 08:20:54 +0000 |
commit | 132ba5fdc546084dfbebe4668a6e18f5da8eb407 (patch) | |
tree | 307c6b930e79fcd3c8543f3aac17b919192203be /common | |
parent | 11dadd547c08a3480ea153482e99c6ae70b73415 (diff) | |
download | u-boot-imx-132ba5fdc546084dfbebe4668a6e18f5da8eb407.zip u-boot-imx-132ba5fdc546084dfbebe4668a6e18f5da8eb407.tar.gz u-boot-imx-132ba5fdc546084dfbebe4668a6e18f5da8eb407.tar.bz2 |
* Patch by Pierre Aubert, 26 Feb 2004
add IDE support for MPC5200
* Patch by Masami Komiya, 26 Feb 2004:
add autoload via NFS
* Patch by Stephen Williams
Use of CONFIG_SERIAL_SOFTWARE_FIFO in board.c consistent with uses
elsewhere in the source.
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_ide.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/cmd_ide.c b/common/cmd_ide.c index cfb4e1d..5bde500 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@ -37,6 +37,9 @@ #ifdef CONFIG_8xx # include <mpc8xx.h> #endif +#ifdef CONFIG_MPC5xxx +#include <mpc5xxx.h> +#endif #include <ide.h> #include <ata.h> #ifdef CONFIG_STATUS_LED |