xburst: fix compilation: remove the __dev attributes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35946 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
f32b22c8c9
commit
5b4c3e8098
|
@ -2096,7 +2096,7 @@ History:
|
|||
+ },
|
||||
+};
|
||||
+
|
||||
+static int __devinit jz4740_udc_probe(struct platform_device *pdev)
|
||||
+static int jz4740_udc_probe(struct platform_device *pdev)
|
||||
+{
|
||||
+ struct jz4740_udc *jz4740_udc = &jz4740_udc_controller;
|
||||
+ int ret;
|
||||
|
@ -2179,7 +2179,7 @@ History:
|
|||
+ return ret;
|
||||
+}
|
||||
+
|
||||
+static int __devexit jz4740_udc_remove(struct platform_device *pdev)
|
||||
+static int jz4740_udc_remove(struct platform_device *pdev)
|
||||
+{
|
||||
+ struct jz4740_udc *dev = platform_get_drvdata(pdev);
|
||||
+
|
||||
|
@ -2231,7 +2231,7 @@ History:
|
|||
+
|
||||
+static struct platform_driver udc_driver = {
|
||||
+ .probe = jz4740_udc_probe,
|
||||
+ .remove = __devexit_p(jz4740_udc_remove),
|
||||
+ .remove = jz4740_udc_remove,
|
||||
+ .driver = {
|
||||
+ .name = "jz-udc",
|
||||
+ .owner = THIS_MODULE,
|
||||
|
|
|
@ -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,
|
||||
+};
|
||||
|
|
Loading…
Reference in New Issue