#include #include #include MODULE_INFO(name, KBUILD_MODNAME); __visible struct module __this_module __section(".gnu.linkonce.this_module") = { .name = KBUILD_MODNAME, .init = init_module, #ifdef CONFIG_MODULE_UNLOAD .exit = cleanup_module, #endif .arch = MODULE_ARCH_INIT, }; MODULE_INFO(intree, "Y"); KSYMTAB_FUNC(nvme_fc_register_localport, "_gpl", ""); KSYMTAB_FUNC(nvme_fc_unregister_localport, "_gpl", ""); KSYMTAB_FUNC(nvme_fc_register_remoteport, "_gpl", ""); KSYMTAB_FUNC(nvme_fc_unregister_remoteport, "_gpl", ""); KSYMTAB_FUNC(nvme_fc_rescan_remoteport, "_gpl", ""); KSYMTAB_FUNC(nvme_fc_set_remoteport_devloss, "_gpl", ""); KSYMTAB_FUNC(nvme_fc_rcv_ls_req, "_gpl", ""); KSYMTAB_FUNC(nvme_fc_io_getuuid, "_gpl", ""); MODULE_INFO(depends, "nvme-core,nvme-fabrics"); MODULE_INFO(srcversion, "F09F7F6E3162C84BC9D2BFD");