Revert "[MTD] blkdev helper code: fix printk format warning"

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Fri Sep 22 06:59:02 EDT 2006


Commit:     e4e3295f0c0e1a09a46522359e24c0569e2e7b47
Parent:     51197abf29657373bcf9803d87da3c3d8fc3a37e
commit e4e3295f0c0e1a09a46522359e24c0569e2e7b47
Author:     David Woodhouse <dwmw2 at infradead.org>
AuthorDate: Fri Sep 22 11:05:42 2006 +0100
Commit:     David Woodhouse <dwmw2 at infradead.org>
CommitDate: Fri Sep 22 11:05:42 2006 +0100

    Revert "[MTD] blkdev helper code: fix printk format warning"
    
    This reverts commit 668040fcd1e06fc3e68a92708cbdfa5a52c37d3c.
    
    The 'flags' field of the struct request is 'unsigned long'. Quite
    how Randy came to see 'long int format, different type arg' I don't
    know, but it doesn't seem to be the case any more.
    
    Signed-off-by: David Woodhouse <dwmw2 at infradead.org>
---
 drivers/mtd/mtd_blkdevs.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/mtd_blkdevs.c b/drivers/mtd/mtd_blkdevs.c
index 302bed5..458d3c8 100644
--- a/drivers/mtd/mtd_blkdevs.c
+++ b/drivers/mtd/mtd_blkdevs.c
@@ -69,7 +69,7 @@ static int do_blktrans_request(struct mt
 		return 1;
 
 	default:
-		printk(KERN_NOTICE "Unknown request %d\n", rq_data_dir(req));
+		printk(KERN_NOTICE "Unknown request %ld\n", rq_data_dir(req));
 		return 0;
 	}
 }



More information about the linux-mtd-cvs mailing list