1. 19 3月, 2014 1 次提交
  2. 08 12月, 2013 1 次提交
    • G
      m68k/amiga,atari: Fix specifying multiple debug= parameters · 8a09cec2
      Geert Uytterhoeven 提交于
      Since commit d6713b40 ("m68k: early
      parameter support"), the user can specify multiple debug consoles using the
      "debug=" kernel command line parameter.
      However, as there's only a single struct console object, which is reused,
      it would actually register the same console object multiple times, causing
      the following warning:
      
      WARNING: CPU: 0 PID: 0 at kernel/printk/printk.c:2233 register_console+0x36/
      console 'debug0' already registered
      
      Make sure to register the console object only once, to avoid the warning.
      
      Note that still only one console (the one corresponding to the last
      "debug=" parameter) will be active at the same time, as the .write() method
      of the already registered console object is overwritten by a subsequent
      "debug=" parameter.
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      8a09cec2
  3. 26 11月, 2013 7 次提交
  4. 15 7月, 2013 1 次提交
  5. 25 12月, 2012 1 次提交
  6. 18 8月, 2012 1 次提交
  7. 23 4月, 2012 3 次提交
  8. 29 3月, 2012 1 次提交
  9. 13 1月, 2012 2 次提交
  10. 09 11月, 2011 9 次提交
  11. 31 7月, 2011 7 次提交
  12. 17 3月, 2011 1 次提交
  13. 23 1月, 2011 1 次提交
    • G
      m68k/amiga: Fix "debug=mem" · 5df1abdb
      Geert Uytterhoeven 提交于
      `debug=mem' on Amiga has been broken for a while.
      early_param() processing is done very/too early, i.e. before
      amiga_identify() / amiga_chip_init(), causing amiga_savekmsg_setup() not
      to find any Chip RAM.
      
      As we don't plan to free this memory anyway, just steal it from the initial
      Chip RAM memory block instead.
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      5df1abdb
  14. 27 5月, 2010 4 次提交