Skip to content

Commit

Permalink
[pb] Remove now-obsolete __devinit/__devexit markers
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Brown <mbrown@fensystems.co.uk>
  • Loading branch information
mcb30 committed Sep 11, 2013
1 parent 2f1db98 commit 47ebce1
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions kernel/pulseblaster.c
Expand Up @@ -663,8 +663,8 @@ static int __maybe_unused pb_resume(struct pci_dev *pci)
* @pb: Pulseblaster device
* @type: Pulseblaster device type
*/
static int __devinit pb_identify(struct pulseblaster *pb,
enum pulseblaster_type_key type)
static int pb_identify(struct pulseblaster *pb,
enum pulseblaster_type_key type)
{
switch (type) {
case PB_OLD_AMCC:
Expand All @@ -684,8 +684,7 @@ static int __devinit pb_identify(struct pulseblaster *pb,
* @pci: PCI device
* @id: PCI device ID
*/
static int __devinit pb_probe(struct pci_dev *pci,
const struct pci_device_id *id)
static int pb_probe(struct pci_dev *pci, const struct pci_device_id *id)
{
static unsigned int pbidx;
struct pulseblaster *pb;
Expand Down Expand Up @@ -761,7 +760,7 @@ static int __devinit pb_probe(struct pci_dev *pci,
*
* @pci: PCI device
*/
static void __devexit pb_remove(struct pci_dev *pci)
static void pb_remove(struct pci_dev *pci)
{
struct pulseblaster *pb = pci_get_drvdata(pci);

Expand Down Expand Up @@ -790,7 +789,7 @@ static struct pci_driver pb_pci_driver = {
.name = PB_NAME,
.id_table = pb_pci_tbl,
.probe = pb_probe,
.remove = __devexit_p(pb_remove),
.remove = pb_remove,
#ifdef CONFIG_PM
.suspend = pb_suspend,
.resume = pb_resume,
Expand Down

0 comments on commit 47ebce1

Please sign in to comment.