mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-15 09:34:17 +00:00
12 lines
196 B
C
12 lines
196 B
C
|
#include <linux/kernel.h>
|
||
|
#include <linux/init.h>
|
||
|
#include <linux/module.h>
|
||
|
#include <linux/ide.h>
|
||
|
|
||
|
static int __init ide_scan_pci(void)
|
||
|
{
|
||
|
return ide_scan_pcibus();
|
||
|
}
|
||
|
|
||
|
module_init(ide_scan_pci);
|