mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 03:46:47 +07:00
staging: meilhaus, annotate cpi functions
Add __devinit and __devexit to pci probe/remove. Also make pci_driver static. Signed-off-by: Jiri Slaby <jirislaby@gmail.com> Cc: David Kiliani <mail@davidkiliani.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
1cd590481e
commit
8f456df9c9
@ -103,11 +103,11 @@ static const struct file_operations me_file_operations = {
|
||||
.release = me_release,
|
||||
};
|
||||
|
||||
struct pci_driver me_pci_driver = {
|
||||
static struct pci_driver me_pci_driver = {
|
||||
.name = MEMAIN_NAME,
|
||||
.id_table = me_pci_table,
|
||||
.probe = me_probe_pci,
|
||||
.remove = me_remove_pci
|
||||
.remove = __devexit_p(me_remove_pci),
|
||||
};
|
||||
|
||||
/* //me_usb_driver
|
||||
@ -384,7 +384,8 @@ static me_device_t *get_dummy_instance(unsigned short vendor_id,
|
||||
return instance;
|
||||
}
|
||||
|
||||
static int me_probe_pci(struct pci_dev *dev, const struct pci_device_id *id)
|
||||
static int __devinit me_probe_pci(struct pci_dev *dev,
|
||||
const struct pci_device_id *id)
|
||||
{
|
||||
int err;
|
||||
me_pci_constructor_t constructor = NULL;
|
||||
@ -582,7 +583,7 @@ static int insert_to_device_list(me_device_t *n_device)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void me_remove_pci(struct pci_dev *dev)
|
||||
static void __devexit me_remove_pci(struct pci_dev *dev)
|
||||
{
|
||||
int vendor_id = dev->vendor;
|
||||
int device_id = dev->device;
|
||||
|
Loading…
Reference in New Issue
Block a user