diff options
author | wdenk <wdenk> | 2004-12-16 21:44:03 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-12-16 21:44:03 +0000 |
commit | efe2a4d5cf96dd37bc4782ba1880cee4ed1117c5 (patch) | |
tree | 9b8636853fefbfcd38e804ddccac013bd216d50e /board/inka4x0 | |
parent | bea8e84b52ac3c499b5868978a29c20cf92cf88f (diff) |
Code cleanup.
Diffstat (limited to 'board/inka4x0')
-rw-r--r-- | board/inka4x0/flash.c | 40 | ||||
-rw-r--r-- | board/inka4x0/inka4x0.c | 1 |
2 files changed, 20 insertions, 21 deletions
diff --git a/board/inka4x0/flash.c b/board/inka4x0/flash.c index a60f4f1298f..b13865530a3 100644 --- a/board/inka4x0/flash.c +++ b/board/inka4x0/flash.c @@ -142,9 +142,9 @@ void flash_print_info (flash_info_t *info) } switch (info->flash_id & FLASH_TYPEMASK) { - case FLASH_AM116DB: - printf ("AM29LV116DB (16Mbit, bottom boot sect)\n"); - break; + case FLASH_AM116DB: + printf ("AM29LV116DB (16Mbit, bottom boot sect)\n"); + break; case FLASH_AMLV128U: printf ("AM29LV128ML (128Mbit, uniform sector size)\n"); break; @@ -220,21 +220,21 @@ ulong flash_get_size (FPWV *addr, flash_info_t *info) case (uchar)AMD_ID_LV116DB: debug ("Chip: AM29LV116DB\n"); - info->flash_id += FLASH_AM116DB; - info->sector_count = 35; - info->size = 0x00200000; - /* - * The first 4 sectors are 16 kB, 8 kB, 8 kB and 32 kB, all - * the other ones are 64 kB - */ - info->start[0] = base + 0x00000000; - info->start[1] = base + 0x00004000; - info->start[2] = base + 0x00006000; - info->start[3] = base + 0x00008000; - for( i = 4; i < info->sector_count; i++ ) - info->start[i] = - base + (i * (64 << 10)) - 0x00030000; - break; /* => 2 MB */ + info->flash_id += FLASH_AM116DB; + info->sector_count = 35; + info->size = 0x00200000; + /* + * The first 4 sectors are 16 kB, 8 kB, 8 kB and 32 kB, all + * the other ones are 64 kB + */ + info->start[0] = base + 0x00000000; + info->start[1] = base + 0x00004000; + info->start[2] = base + 0x00006000; + info->start[3] = base + 0x00008000; + for( i = 4; i < info->sector_count; i++ ) + info->start[i] = + base + (i * (64 << 10)) - 0x00030000; + break; /* => 2 MB */ case (FPW)AMD_ID_LV160B: debug ("Chip: AM29LV160MB\n"); @@ -377,8 +377,8 @@ int write_buff (flash_info_t *info, uchar *src, ulong addr, ulong cnt) for (i = 0; i < cnt; i++) if ((rc = write_word_amd(info, (FPW *)(addr+i), src[i])) != 0) { - return (rc); - } + return (rc); + } return rc; } diff --git a/board/inka4x0/inka4x0.c b/board/inka4x0/inka4x0.c index 3dec6849b1c..1d7707ab40d 100644 --- a/board/inka4x0/inka4x0.c +++ b/board/inka4x0/inka4x0.c @@ -176,4 +176,3 @@ void flash_preinit(void) */ *(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */ } - |