#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(w1_add_master_device, "", ""); KSYMTAB_FUNC(w1_remove_master_device, "", ""); KSYMTAB_FUNC(w1_register_family, "", ""); KSYMTAB_FUNC(w1_unregister_family, "", ""); KSYMTAB_FUNC(w1_touch_bit, "_gpl", ""); KSYMTAB_FUNC(w1_write_8, "_gpl", ""); KSYMTAB_FUNC(w1_triplet, "_gpl", ""); KSYMTAB_FUNC(w1_read_8, "_gpl", ""); KSYMTAB_FUNC(w1_write_block, "_gpl", ""); KSYMTAB_FUNC(w1_touch_block, "_gpl", ""); KSYMTAB_FUNC(w1_read_block, "_gpl", ""); KSYMTAB_FUNC(w1_reset_bus, "_gpl", ""); KSYMTAB_FUNC(w1_calc_crc8, "_gpl", ""); KSYMTAB_FUNC(w1_reset_select_slave, "_gpl", ""); KSYMTAB_FUNC(w1_reset_resume_command, "_gpl", ""); KSYMTAB_FUNC(w1_next_pullup, "_gpl", ""); MODULE_INFO(depends, "");