Ignore:
Timestamp:
Feb 10, 2017, 2:50:49 AM (9 years ago)
Author:
David Azarewicz
Message:

Build system cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-2.1.x/lib32/initcall.h

    r568 r588  
    88typedef void (*exitcall_t)(void);
    99
    10 extern "C" int use_internal_drums;
     10extern int use_internal_drums;
    1111
    1212#define __initcall(fn)                                                          \
     
    1919#define module_exit(x)  __exitcall(x);
    2020
    21 #define extern_module_init(x)   extern "C" initcall_t __initcall_##x;
    22 #define extern_module_exit(x)   extern "C" exitcall_t __exitcall_##x;
     21#define extern_module_init(x)   extern initcall_t __initcall_##x;
     22#define extern_module_exit(x)   extern exitcall_t __exitcall_##x;
    2323
    2424#define call_module_init(x)     __initcall_##x()
     
    108108extern_module_init(patch_analog_init)
    109109extern_module_exit(patch_analog_exit)
    110 #if 0
    111 extern_module_init(patch_hdmi_init)
    112 extern_module_exit(patch_hdmi_init)
    113 #endif
     110extern_module_init(patch_atihdmi_init)
     111extern_module_exit(patch_atihdmi_init)
    114112extern_module_init(patch_cmedia_init)
    115113extern_module_exit(patch_cmedia_exit)
Note: See TracChangeset for help on using the changeset viewer.