Back last year, I posted a largish restructuring of printk. V1: https://lkml.org/lkml/2012/10/17/41 V2: https://lkml.org/lkml/2012/10/24/748
The idea was to break up this way too large a file into something more manageable and readable. This is another posting of just the first few patches of this series rebased onto v3.11-rc1 If this is acceptable, I'll post 5 or so patches at a time after/if each block of patches is applied. Joe Perches (5): printk: Move to separate directory for easier modification printk: Add console_cmdline.h printk: Move braille console support into separate braille.[ch] files printk: Use pointer for console_cmdline indexing printk: rename struct log to struct printk_log drivers/accessibility/braille/braille_console.c | 9 +- kernel/Makefile | 3 +- kernel/printk/Makefile | 2 + kernel/printk/braille.c | 48 ++++++ kernel/printk/braille.h | 48 ++++++ kernel/printk/console_cmdline.h | 14 ++ kernel/{ => printk}/printk.c | 185 +++++++++++------------- 7 files changed, 202 insertions(+), 107 deletions(-) create mode 100644 kernel/printk/Makefile create mode 100644 kernel/printk/braille.c create mode 100644 kernel/printk/braille.h create mode 100644 kernel/printk/console_cmdline.h rename kernel/{ => printk}/printk.c (95%) -- 1.8.1.2.459.gbcd45b4.dirty -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/