1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-20 23:58:27 +02:00

pci_module_init() is deprecated for a long time - this won't hurt .21 and will be needed for .22

SVN-Revision: 7937
This commit is contained in:
Imre Kaloz 2007-07-12 10:29:54 +00:00
parent d2c338cd52
commit b35bedf094
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@
#include <linux/mtd/map.h>
#include <linux/mtd/partitions.h>
#include <linux/autoconf.h>
#include <linux/sched.h>
#include <linux/squashfs_fs.h>
static struct mtd_info *rdc3210_mtd;

View File

@ -952,7 +952,7 @@ static int __init r6040_init (void)
printk(version);
printed_version = 1;
return pci_module_init (&r6040_driver);
return pci_register_driver (&r6040_driver);
}