From cd1e08850f1712d0e43004ef92743df34d6f94ae Mon Sep 17 00:00:00 2001 From: Matthias Kaehlcke Date: Mon, 4 Jan 2010 20:42:52 +0100 Subject: CFI flash driver: Fix misleading trace when unprotecting a sector When (un)protecting a flash sector with the CFI flash driver a trace "protect 0x..." is generated, independently of the type of operation. This is misleading in case of an unprotect. Tell the truth when unprotecting a sector. Signed-off-by: Matthias Kaehlcke Signed-off-by: Sascha Hauer --- drivers/nor/cfi_flash.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'drivers/nor') diff --git a/drivers/nor/cfi_flash.c b/drivers/nor/cfi_flash.c index 37206d0e52..938e2cb7bb 100644 --- a/drivers/nor/cfi_flash.c +++ b/drivers/nor/cfi_flash.c @@ -380,7 +380,8 @@ static int cfi_protect(struct cdev *cdev, size_t count, unsigned long offset, in unsigned long start, end; int i, ret = 0; - debug("%s: protect 0x%08x (size %d)\n", __FUNCTION__, offset, count); + debug("%s: %sprotect 0x%08x (size %d)\n", + __FUNCTION__, (prot? "" : "un"), offset, count); start = flash_find_sector(finfo, cdev->dev->map_base + offset); end = flash_find_sector(finfo, cdev->dev->map_base + offset + count - 1); -- cgit v1.2.3