Fix minor 85xx warnings

Some patches had inserted warnings into the build:
* mpc8560ads declared data without using it
* cpu_init declared ecm and immap without using it in all CONFIGs
* MPC8548CDS.h had its default filenames changed so that they contained
  "\m" in the paths.  Made the defaults not Windows-specific (or
  anything-specific)

Signed-off-by: Andy Fleming <afleming@freescale.com>
This commit is contained in:
Andy Fleming 2007-08-13 14:38:06 -05:00 committed by Andrew Fleming-AFLEMING
parent f2cff6b104
commit 6c543597bb
3 changed files with 7 additions and 4 deletions

View File

@ -554,7 +554,6 @@ ft_soc_setup(void *blob, bd_t *bd)
{ {
u32 *p; u32 *p;
int len; int len;
ulong data;
p = ft_get_prop(blob, "/" OF_SOC "/cpm@e0000000/brg-frequency", &len); p = ft_get_prop(blob, "/" OF_SOC "/cpm@e0000000/brg-frequency", &len);

View File

@ -194,10 +194,12 @@ void cpu_init_f (void)
int cpu_init_r(void) int cpu_init_r(void)
{ {
#if defined(CONFIG_CLEAR_LAW0) || defined(CONFIG_L2_CACHE)
volatile immap_t *immap = (immap_t *)CFG_IMMR; volatile immap_t *immap = (immap_t *)CFG_IMMR;
#endif
#ifdef CONFIG_CLEAR_LAW0
volatile ccsr_local_ecm_t *ecm = &immap->im_local_ecm; volatile ccsr_local_ecm_t *ecm = &immap->im_local_ecm;
#ifdef CONFIG_CLEAR_LAW0
/* clear alternate boot location LAW (used for sdram, or ddr bank) */ /* clear alternate boot location LAW (used for sdram, or ddr bank) */
ecm->lawar0 = 0; ecm->lawar0 = 0;
#endif #endif

View File

@ -623,6 +623,7 @@ extern unsigned long get_clock_freq(void);
#define ENET_ENV "" #define ENET_ENV ""
#endif #endif
#if 0
#define CONFIG_EXTRA_ENV_SETTINGS \ #define CONFIG_EXTRA_ENV_SETTINGS \
"netdev=eth0\0" \ "netdev=eth0\0" \
"uboot=" MK_STR(CONFIG_UBOOTPATH) "\0" \ "uboot=" MK_STR(CONFIG_UBOOTPATH) "\0" \
@ -634,9 +635,9 @@ extern unsigned long get_clock_freq(void);
"cmp.b $loadaddr " MK_STR(TEXT_BASE) " $filesize\0" \ "cmp.b $loadaddr " MK_STR(TEXT_BASE) " $filesize\0" \
"consoledev=ttyS1\0" \ "consoledev=ttyS1\0" \
"ramdiskaddr=2000000\0" \ "ramdiskaddr=2000000\0" \
"ramdiskfile=mpc8548cds\ramdisk.uboot\0" \ "ramdiskfile=ramdisk.uboot\0" \
"dtbaddr=c00000\0" \ "dtbaddr=c00000\0" \
"dtbfile=mpc8548cds\mpc8548cds.dtb\0" \ "dtbfile=mpc8548cds.dtb\0" \
"eoi=mw e00400b0 0\0" \ "eoi=mw e00400b0 0\0" \
"iack=md e00400a0 1\0" \ "iack=md e00400a0 1\0" \
"ddrreg=md ${a}000 8; md ${a}080 8;md ${a}100 d; md ${a}140 4; md ${a}bf0 4;" \ "ddrreg=md ${a}000 8; md ${a}080 8;md ${a}100 d; md ${a}140 4; md ${a}bf0 4;" \
@ -658,6 +659,7 @@ extern unsigned long get_clock_freq(void);
PCI_ENV1 \ PCI_ENV1 \
PCI_ENV2 \ PCI_ENV2 \
ENET_ENV ENET_ENV
#endif
#define CONFIG_NFSBOOTCOMMAND \ #define CONFIG_NFSBOOTCOMMAND \