Drivers: sbus: remove __dev* attributes.
CONFIG_HOTPLUG is going away as an option. As a result, the __dev* markings need to be removed. This change removes the use of __devinit, __devexit_p, and __devexit from these drivers. Based on patches originally written by Bill Pemberton, but redone by me in order to handle some of the coding style issues better, by hand. Cc: Bill Pemberton <wfp5p@virginia.edu> Cc: "David S. Miller" <davem@davemloft.net> Cc: Peter Senna Tschudin <peter.senna@gmail.com> Cc: David Howells <dhowells@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
@@ -1028,7 +1028,7 @@ static int kenvctrld(void *__unused)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __devinit envctrl_probe(struct platform_device *op)
|
||||
static int envctrl_probe(struct platform_device *op)
|
||||
{
|
||||
struct device_node *dp;
|
||||
int index, err;
|
||||
@@ -1104,7 +1104,7 @@ out_iounmap:
|
||||
return err;
|
||||
}
|
||||
|
||||
static int __devexit envctrl_remove(struct platform_device *op)
|
||||
static int envctrl_remove(struct platform_device *op)
|
||||
{
|
||||
int index;
|
||||
|
||||
@@ -1135,7 +1135,7 @@ static struct platform_driver envctrl_driver = {
|
||||
.of_match_table = envctrl_match,
|
||||
},
|
||||
.probe = envctrl_probe,
|
||||
.remove = __devexit_p(envctrl_remove),
|
||||
.remove = envctrl_remove,
|
||||
};
|
||||
|
||||
module_platform_driver(envctrl_driver);
|
||||
|
Reference in New Issue
Block a user