summaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/atmel-mci.c
diff options
context:
space:
mode:
authorBen Nizette2008-07-18 08:48:09 +0200
committerHaavard Skinnemoen2008-07-18 11:01:16 +0200
commitfbfca4b8781757c1950b2225ba67d83072e0bc07 (patch)
treedcccd44ce42e7072ea4d80cbedde510277572822 /drivers/mmc/host/atmel-mci.c
parentfix avr32 build errors (diff)
downloadkernel-qcow2-linux-fbfca4b8781757c1950b2225ba67d83072e0bc07.tar.gz
kernel-qcow2-linux-fbfca4b8781757c1950b2225ba67d83072e0bc07.tar.xz
kernel-qcow2-linux-fbfca4b8781757c1950b2225ba67d83072e0bc07.zip
avr32: clean up mci platform code
This patch does a few small cleanups around the atmel mci platform code and in the atmel-mci driver. The platform changes simply removes an unused variable, uses the fact that by the end we always have some form of platform data and notes that GPIO_PIN_NONE != 0. This last point could cause the incorrect attempt to twice reserve pin PA0. While we've got the hood up, add linux/err.h to the atmel-mci.c include list. It needs it and generally pulls it by voodoo but I did once stumble across a config which don't build. This is against Linus' latest git. Signed-off-by: Ben Nizette <bn@niasdigital.com> Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Diffstat (limited to 'drivers/mmc/host/atmel-mci.c')
-rw-r--r--drivers/mmc/host/atmel-mci.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c
index cce873c5a149..c2f8aa840e82 100644
--- a/drivers/mmc/host/atmel-mci.c
+++ b/drivers/mmc/host/atmel-mci.c
@@ -10,6 +10,7 @@
#include <linux/blkdev.h>
#include <linux/clk.h>
#include <linux/device.h>
+#include <linux/err.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>