summaryrefslogtreecommitdiffstats
path: root/drivers/video/pxa.c
diff options
context:
space:
mode:
authorAlexander Shiyan <shc_work@mail.ru>2014-03-22 12:03:38 +0400
committerSascha Hauer <s.hauer@pengutronix.de>2014-04-02 07:55:26 +0200
commit8d5f1bdc9a75aa02abf73c77c97e5cf72bec7e21 (patch)
treea893a1ea139f968c1b4e8a1ab04412f23c8617bf /drivers/video/pxa.c
parente2fa0cca06de8612ec96b3a595c856ab6dd1eaa1 (diff)
downloadbarebox-8d5f1bdc9a75aa02abf73c77c97e5cf72bec7e21.tar.gz
barebox-8d5f1bdc9a75aa02abf73c77c97e5cf72bec7e21.tar.xz
drivers: treewide: Kill empty remove() implementations
Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/video/pxa.c')
-rw-r--r--drivers/video/pxa.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/video/pxa.c b/drivers/video/pxa.c
index 529190baec..b4ce3a1bf8 100644
--- a/drivers/video/pxa.c
+++ b/drivers/video/pxa.c
@@ -536,13 +536,8 @@ static int pxafb_probe(struct device_d *dev)
return 0;
}
-static void pxafb_remove(struct device_d *dev)
-{
-}
-
static struct driver_d pxafb_driver = {
.name = "pxafb",
.probe = pxafb_probe,
- .remove = pxafb_remove,
};
device_platform_driver(pxafb_driver);