Commit ac31cf70 authored by Dave Hansen's avatar Dave Hansen Committed by Oleg Drokin

[PATCH] fix link problem in ips driver

parent 01a8d063
......@@ -326,21 +326,21 @@ IPS_DEFINE_COMPAT_TABLE( Compatable ); /* Version Compatability Ta
name: ips_hot_plug_name,
id_table: ips_pci_table,
probe: ips_insert_device,
remove: ips_remove_device,
remove: __devexit_p(ips_remove_device),
};
struct pci_driver ips_pci_driver_5i = {
name: ips_hot_plug_name,
id_table: ips_pci_table_5i,
probe: ips_insert_device,
remove: ips_remove_device,
remove: __devexit_p(ips_remove_device),
};
struct pci_driver ips_pci_driver_i960 = {
name: ips_hot_plug_name,
id_table: ips_pci_table_i960,
probe: ips_insert_device,
remove: ips_remove_device,
remove: __devexit_p(ips_remove_device),
};
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment