|
@@ -29,7 +29,6 @@
|
|
#include <asm/processor.h>
|
|
#include <asm/processor.h>
|
|
#include <asm/byteorder.h>
|
|
#include <asm/byteorder.h>
|
|
#include <i2c.h>
|
|
#include <i2c.h>
|
|
-#include <stdio_dev.h>
|
|
|
|
#include <pci.h>
|
|
#include <pci.h>
|
|
#include <malloc.h>
|
|
#include <malloc.h>
|
|
#include <bzlib.h>
|
|
#include <bzlib.h>
|
|
@@ -428,35 +427,6 @@ void check_env(void)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
-extern struct stdio_dev *stdio_devices[];
|
|
|
|
-extern char *stdio_names[];
|
|
|
|
-
|
|
|
|
-void show_stdio_dev(void)
|
|
|
|
-{
|
|
|
|
- /* Print information */
|
|
|
|
- puts("In: ");
|
|
|
|
- if (stdio_devices[stdin] == NULL) {
|
|
|
|
- puts("No input devices available!\n");
|
|
|
|
- } else {
|
|
|
|
- printf ("%s\n", stdio_devices[stdin]->name);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- puts("Out: ");
|
|
|
|
- if (stdio_devices[stdout] == NULL) {
|
|
|
|
- puts("No output devices available!\n");
|
|
|
|
- } else {
|
|
|
|
- printf ("%s\n", stdio_devices[stdout]->name);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- puts("Err: ");
|
|
|
|
- if (stdio_devices[stderr] == NULL) {
|
|
|
|
- puts("No error devices available!\n");
|
|
|
|
- } else {
|
|
|
|
- printf ("%s\n", stdio_devices[stderr]->name);
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
#endif /* #if !defined(CONFIG_PATI) */
|
|
#endif /* #if !defined(CONFIG_PATI) */
|
|
|
|
|
|
int do_mplcommon(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
|
int do_mplcommon(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|