| 106 | }; |
| 107 | |
| 108 | static inline const char *bscb_location(const struct boot_state_callback *bscb) |
| 109 | { |
| 110 | #if CONFIG(DEBUG_BOOT_STATE) |
| 111 | return bscb->location; |
| 112 | #else |
| 113 | return dead_code_t(const char *); |
| 114 | #endif |
| 115 | } |
| 116 | |
| 117 | #if CONFIG(DEBUG_BOOT_STATE) |
| 118 | #define BOOT_STATE_CALLBACK_LOC __FILE__ ":" STRINGIFY(__LINE__) |