summaryrefslogtreecommitdiff
path: root/pci/pci_main.c
blob: 521aebcfa34b9b12c0c9077cd37a572bc2883344 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __KERNEL_MODULE__
#define __KERNEL_MODULE__
#endif

int test_module_init(void) {
    return 0;
}

void test_module_exit(void) {
}