summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/cfi_flash.c
diff options
context:
space:
mode:
authorKim Phillips <kim.phillips@freescale.com>2010-07-26 18:35:39 -0500
committerStefan Roese <sr@denx.de>2010-08-18 09:09:00 +0200
commit2e97394a6d07a36dfc139b7b98b12e452b5bd8dc (patch)
treeafbca6feb6525772cab3c0e4450304922ab6156b /drivers/mtd/cfi_flash.c
parent962ad59e25640e586e2bceabf67a628a27f8f508 (diff)
downloadtalos-obmc-uboot-2e97394a6d07a36dfc139b7b98b12e452b5bd8dc.tar.gz
talos-obmc-uboot-2e97394a6d07a36dfc139b7b98b12e452b5bd8dc.zip
cfi_flash: flinfo: allow user interrupt in flash print info fn
flashes getting larger, users more impatient. Signed-off-by: Kim Phillips <kim.phillips@freescale.com> Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/mtd/cfi_flash.c')
-rw-r--r--drivers/mtd/cfi_flash.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c
index 2d09caf738..1c736868af 100644
--- a/drivers/mtd/cfi_flash.c
+++ b/drivers/mtd/cfi_flash.c
@@ -1159,6 +1159,8 @@ void flash_print_info (flash_info_t * info)
puts ("\n Sector Start Addresses:");
for (i = 0; i < info->sector_count; ++i) {
+ if (ctrlc())
+ return;
if ((i % 5) == 0)
printf ("\n");
#ifdef CONFIG_SYS_FLASH_EMPTY_INFO
OpenPOWER on IntegriCloud