]> git.ipfire.org Git - u-boot.git/blobdiff - board/mpl/common/common_util.c
* Code cleanup:
[u-boot.git] / board / mpl / common / common_util.c
index 503654e2962f4b29481f6fc3e28fd02f0d4ee7a3..e2672f7b11cbd863eb304387af288c810567cd67 100644 (file)
@@ -56,7 +56,6 @@ extern flash_info_t flash_info[];     /* info for FLASH chips */
 static image_header_t header;
 
 
-
 int mpl_prg(unsigned long src,unsigned long size)
 {
        unsigned long start;
@@ -348,7 +347,6 @@ void check_env(void)
 }
 
 
-
 extern device_t *stdio_devices[];
 extern char *stdio_names[];
 
@@ -454,10 +452,10 @@ int get_boot_mode(void)
        unsigned long pbcr;
        int res = 0;
        pbcr = mfdcr (strap);
-       if ((pbcr & PSR_ROM_WIDTH_MASK) == 0) 
+       if ((pbcr & PSR_ROM_WIDTH_MASK) == 0)
                /* boot via MPS or MPS mapping */
                res = BOOT_MPS;
-       if(pbcr & PSR_ROM_LOC) 
+       if(pbcr & PSR_ROM_LOC)
                /* boot via PCI.. */
                res |= BOOT_PCI;
         return res;