aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/xburst/patches-3.8/0007-Add-ili8960-lcd-driver.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2013-03-10 20:26:28 +0000
committerHauke Mehrtens <hauke@hauke-m.de>2013-03-10 20:26:28 +0000
commit89d4fceee2980ef845e9d630f5e67231840b7490 (patch)
tree9c3caef0d0b65270ce749534e1915a349ea598b2 /target/linux/xburst/patches-3.8/0007-Add-ili8960-lcd-driver.patch
parent45b24fa771413aadb559300c73a69e55ed8b0435 (diff)
downloadupstream-89d4fceee2980ef845e9d630f5e67231840b7490.tar.gz
upstream-89d4fceee2980ef845e9d630f5e67231840b7490.tar.bz2
upstream-89d4fceee2980ef845e9d630f5e67231840b7490.zip
xburst: fix compilation: remove the __dev attributes
SVN-Revision: 35946
Diffstat (limited to 'target/linux/xburst/patches-3.8/0007-Add-ili8960-lcd-driver.patch')
-rw-r--r--target/linux/xburst/patches-3.8/0007-Add-ili8960-lcd-driver.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/xburst/patches-3.8/0007-Add-ili8960-lcd-driver.patch b/target/linux/xburst/patches-3.8/0007-Add-ili8960-lcd-driver.patch
index 3bb6881d47..37fa931fa3 100644
--- a/target/linux/xburst/patches-3.8/0007-Add-ili8960-lcd-driver.patch
+++ b/target/linux/xburst/patches-3.8/0007-Add-ili8960-lcd-driver.patch
@@ -186,7 +186,7 @@ Subject: [PATCH 07/21] Add ili8960 lcd driver
+ .set_mode = ili8960_set_mode,
+};
+
-+static int __devinit ili8960_probe(struct spi_device *spi)
++static int ili8960_probe(struct spi_device *spi)
+{
+ int ret;
+ struct ili8960 *ili8960;
@@ -236,7 +236,7 @@ Subject: [PATCH 07/21] Add ili8960 lcd driver
+ return ret;
+}
+
-+static int __devexit ili8960_remove(struct spi_device *spi)
++static int ili8960_remove(struct spi_device *spi)
+{
+ struct ili8960 *ili8960 = spi_get_drvdata(spi);
+
@@ -281,7 +281,7 @@ Subject: [PATCH 07/21] Add ili8960 lcd driver
+ .owner = THIS_MODULE,
+ },
+ .probe = ili8960_probe,
-+ .remove = __devexit_p(ili8960_remove),
++ .remove = ili8960_remove,
+ .suspend = ili8960_suspend,
+ .resume = ili8960_resume,
+};