diff --git a/kernel/kpm/compact.c b/kernel/kpm/compact.c index 1b2481a9..3caa17f5 100644 --- a/kernel/kpm/compact.c +++ b/kernel/kpm/compact.c @@ -36,14 +36,14 @@ struct CompactAddressSymbol { void* addr; }; -__visible __section(".data") static struct CompactAddressSymbol address_symbol [] = { +__section(".data") static struct CompactAddressSymbol address_symbol [] = { { "kallsyms_lookup_name", &kallsyms_lookup_name }, { "compact_find_symbol", &sukisu_compact_find_symbol }, { "is_run_in_sukisu_ultra", (void*)1 } }; -__visible __section(".text") unsigned long sukisu_compact_find_symbol(const char* name) { +__section(".text") unsigned long sukisu_compact_find_symbol(const char* name) { int i; unsigned long addr;