diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:26:05 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 12:10:16 -0800 |
commit | e765a02cb64bfef53f290122ca0897ef329a4e76 (patch) | |
tree | 0d2e1cafa3ae4428c7d8e9d11830832b21955e89 /drivers/pcmcia/yenta_socket.c | |
parent | 21fb7674c972a73a2dc0954aeeac5929b7fb3e86 (diff) | |
download | talos-op-linux-e765a02cb64bfef53f290122ca0897ef329a4e76.tar.gz talos-op-linux-e765a02cb64bfef53f290122ca0897ef329a4e76.zip |
pcmcia: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/pcmcia/yenta_socket.c')
-rw-r--r-- | drivers/pcmcia/yenta_socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pcmcia/yenta_socket.c b/drivers/pcmcia/yenta_socket.c index caa92cc7a428..6b4ff099fb13 100644 --- a/drivers/pcmcia/yenta_socket.c +++ b/drivers/pcmcia/yenta_socket.c @@ -783,7 +783,7 @@ static void yenta_free_resources(struct yenta_socket *socket) /* * Close it down - release our resources and go home.. */ -static void __devexit yenta_close(struct pci_dev *dev) +static void yenta_close(struct pci_dev *dev) { struct yenta_socket *sock = pci_get_drvdata(dev); |