From mboxrd@z Thu Jan 1 00:00:00 1970 From: xerofoify@gmail.com (Nicholas Krause) Date: Mon, 24 Nov 2014 14:25:08 -0500 Subject: [PATCH] drivers:block Remove unneeded Fix me message in xsyace.c Message-ID: <1416857108-2618-1-git-send-email-xerofoify@gmail.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Removes unneeded FIXME message related to using a hard coded value for ACE_BUS_WIDTH due to it needing to be 8 bits, this is wrong as this function here needs all 16 bits of the bus width and not just the lower or higher 16 depending on the machine's bit order. Signed-off-by: Nicholas Krause --- drivers/block/xsysace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/block/xsysace.c b/drivers/block/xsysace.c index c4328d9..1b807ed 100644 --- a/drivers/block/xsysace.c +++ b/drivers/block/xsysace.c @@ -1152,7 +1152,7 @@ static void ace_free(struct device *dev) static int ace_probe(struct platform_device *dev) { resource_size_t physaddr = 0; - int bus_width = ACE_BUS_WIDTH_16; /* FIXME: should not be hard coded */ + int bus_width = ACE_BUS_WIDTH_16; u32 id = dev->id; int irq = 0; int i; -- 1.9.1