| .. | .. |
|---|
| 45 | 45 | |
|---|
| 46 | 46 | /* These are for everybody (although not all archs will actually |
|---|
| 47 | 47 | discard it in modules) */ |
|---|
| 48 | | -#define __init __section(.init.text) |
|---|
| 49 | | -#define __initdata __section(.init.data) |
|---|
| 50 | | -#define __exitdata __section(.exit.data) |
|---|
| 51 | | -#define __exit_call __used __section(.exitcall.exit) |
|---|
| 48 | +#define __init __section(".init.text") |
|---|
| 49 | +#define __initdata __section(".init.data") |
|---|
| 50 | +#define __exitdata __section(".exit.data") |
|---|
| 51 | +#define __exit_call __used __section(".exitcall.exit") |
|---|
| 52 | 52 | |
|---|
| 53 | 53 | #ifdef MODULE |
|---|
| 54 | | -#define __exit __section(.exit.text) |
|---|
| 54 | +#define __exit __section(".exit.text") |
|---|
| 55 | 55 | #else |
|---|
| 56 | | -#define __exit __used __section(.exit.text) |
|---|
| 56 | +#define __exit __used __section(".exit.text") |
|---|
| 57 | 57 | #endif |
|---|
| 58 | 58 | |
|---|
| 59 | 59 | #endif |
|---|
| .. | .. |
|---|
| 102 | 102 | * Mark functions and data as being only used at initialization |
|---|
| 103 | 103 | * or exit time. |
|---|
| 104 | 104 | */ |
|---|
| 105 | | -#define __uml_init_setup __used __section(.uml.setup.init) |
|---|
| 106 | | -#define __uml_setup_help __used __section(.uml.help.init) |
|---|
| 107 | | -#define __uml_postsetup_call __used __section(.uml.postsetup.init) |
|---|
| 108 | | -#define __uml_exit_call __used __section(.uml.exitcall.exit) |
|---|
| 105 | +#define __uml_init_setup __used __section(".uml.setup.init") |
|---|
| 106 | +#define __uml_setup_help __used __section(".uml.help.init") |
|---|
| 107 | +#define __uml_postsetup_call __used __section(".uml.postsetup.init") |
|---|
| 108 | +#define __uml_exit_call __used __section(".uml.exitcall.exit") |
|---|
| 109 | 109 | |
|---|
| 110 | 110 | #ifdef __UM_HOST__ |
|---|
| 111 | 111 | |
|---|
| .. | .. |
|---|
| 120 | 120 | |
|---|
| 121 | 121 | #define __exitcall(fn) static exitcall_t __exitcall_##fn __exit_call = fn |
|---|
| 122 | 122 | |
|---|
| 123 | | -#define __init_call __used __section(.initcall.init) |
|---|
| 123 | +#define __init_call __used __section(".initcall.init") |
|---|
| 124 | 124 | |
|---|
| 125 | 125 | #endif |
|---|
| 126 | 126 | |
|---|