* <!-- description --> * @brief Outputs a string to the console * * <!-- inputs/outputs --> * @param str the string to output */
| 48 | * @param str the string to output |
| 49 | */ |
| 50 | static inline void |
| 51 | bfdebug(char const *const str) |
| 52 | { |
| 53 | serial_write("[BAREFLANK DEBUG] "); |
| 54 | serial_write(str); |
| 55 | serial_write("\n"); |
| 56 | |
| 57 | printk(KERN_INFO "[BAREFLANK DEBUG] %s\n", str); |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * <!-- description --> |
nothing calls this directly
no test coverage detected