.. | .. |
---|
76 | 76 | struct persistent_ram_zone *cprz; /* Console zone */ |
---|
77 | 77 | struct persistent_ram_zone **fprzs; /* Ftrace zones */ |
---|
78 | 78 | struct persistent_ram_zone *mprz; /* PMSG zone */ |
---|
79 | | -#ifdef CONFIG_PSTORE_MCU_LOG |
---|
80 | | - struct persistent_ram_zone **mcu_przs; /* MCU log zones */ |
---|
| 79 | +#ifdef CONFIG_PSTORE_BOOT_LOG |
---|
| 80 | + struct persistent_ram_zone **boot_przs; /* BOOT log zones */ |
---|
81 | 81 | #endif |
---|
82 | 82 | phys_addr_t phys_addr; |
---|
83 | 83 | unsigned long size; |
---|
.. | .. |
---|
86 | 86 | size_t console_size; |
---|
87 | 87 | size_t ftrace_size; |
---|
88 | 88 | size_t pmsg_size; |
---|
89 | | -#ifdef CONFIG_PSTORE_MCU_LOG |
---|
90 | | - size_t mcu_log_size; |
---|
| 89 | +#ifdef CONFIG_PSTORE_BOOT_LOG |
---|
| 90 | + size_t boot_log_size; |
---|
91 | 91 | #endif |
---|
92 | 92 | int dump_oops; |
---|
93 | 93 | u32 flags; |
---|
.. | .. |
---|
100 | 100 | unsigned int max_ftrace_cnt; |
---|
101 | 101 | unsigned int ftrace_read_cnt; |
---|
102 | 102 | unsigned int pmsg_read_cnt; |
---|
103 | | -#ifdef CONFIG_PSTORE_MCU_LOG |
---|
104 | | - unsigned int mcu_log_read_cnt; |
---|
105 | | - unsigned int max_mcu_log_cnt; |
---|
| 103 | +#ifdef CONFIG_PSTORE_BOOT_LOG |
---|
| 104 | + unsigned int boot_log_read_cnt; |
---|
| 105 | + unsigned int max_boot_log_cnt; |
---|
106 | 106 | #endif |
---|
107 | 107 | struct pstore_info pstore; |
---|
108 | 108 | }; |
---|
.. | .. |
---|
141 | 141 | unsigned long console_size; |
---|
142 | 142 | unsigned long ftrace_size; |
---|
143 | 143 | unsigned long pmsg_size; |
---|
144 | | -#ifdef CONFIG_PSTORE_MCU_LOG |
---|
145 | | - unsigned long mcu_log_size; |
---|
146 | | - unsigned long max_mcu_log_cnt; |
---|
| 144 | +#ifdef CONFIG_PSTORE_BOOT_LOG |
---|
| 145 | + unsigned long boot_log_size; |
---|
| 146 | + unsigned long max_boot_log_cnt; |
---|
147 | 147 | #endif |
---|
148 | 148 | int dump_oops; |
---|
149 | 149 | u32 flags; |
---|