From: Martyn Welch Date: Sat, 3 Dec 2016 23:45:01 +0000 (+0000) Subject: VME: Remove shutdown entry from vme_driver X-Git-Tag: v4.10-rc1~146^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8d7cc7adcec55bfeb28cc2dc58b996c95f180337;p=platform%2Fkernel%2Flinux-exynos.git VME: Remove shutdown entry from vme_driver The vme_driver structure currently has a "shutdown" entry. This entry is never used, it lacks the correct parameter (it should be providing a pointer to the relevant vme_dev struct to even *look* usable), the VME subsystem currently doesn't provide support for shutdown functions and no in-tree drivers use it (hardly surprising, given it'd never be called). Remove the entry from vme_driver to avoid confusion. Signed-off-by: Martyn Welch Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/vme.h b/include/linux/vme.h index ea6095d..8c58917 100644 --- a/include/linux/vme.h +++ b/include/linux/vme.h @@ -113,7 +113,6 @@ struct vme_driver { int (*match)(struct vme_dev *); int (*probe)(struct vme_dev *); int (*remove)(struct vme_dev *); - void (*shutdown)(void); struct device_driver driver; struct list_head devices; };