[MTD] fix printk warning
authorJeff Garzik <jeff@garzik.org>
Sun, 1 Oct 2006 16:16:00 +0000 (12:16 -0400)
committerDavid Woodhouse <dwmw2@infradead.org>
Sun, 1 Oct 2006 16:57:26 +0000 (17:57 +0100)
commit9a292308255ad381dd74541be468c4aec240a615
tree95f9fde2c45c83cdcf7ea69bd9b207e8a4417dcb
parent8a84fc15ae5cafcc366dd85cf8e1ab2040679abc
[MTD] fix printk warning

gcc spits out this warning:

drivers/mtd/mtd_blkdevs.c: In function ‘do_blktrans_request’:
drivers/mtd/mtd_blkdevs.c:72: warning: format ‘%ld’ expects type ‘long int’, but argument 2 has type ‘unsigned int’

This could be fixed any number of ways, including use of BUG().
rq_data_dir() only returns 0 or 1, so this entire case is superfluous.
I did the most simple fix.

Signed-off-by: Jeff Garzik <jeff@garzik.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
drivers/mtd/mtd_blkdevs.c