aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k/kernel/uboot.c
Commit message (Collapse)AuthorAge
* m68k/kernel: Modernize printing of kernel messagesGeert Uytterhoeven2017-02-12
| | | | | | | | | | - Use pr_err_ratelimited() instead of deprecated printk_ratelimit(), - Add dummies for validating format strings when debugging is disabled, - Convert from printk() to pr_*(), - Correct printf()-style format specifiers. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
* m68k: generalize uboot command line supportGreg Ungerer2016-09-25
The uboot command line support needs to be used by both MMU and no-MMU setups, but currently we only have the code in the no-MMU code paths. Move the uboot command line processing code into its own file. Add appropriate calls to it from both the MMU and no-MMU arch setup code. Signed-off-by: Greg Ungerer <gerg@linux-m68k.org> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>