h8300.patch 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. diff -Nur linux-4.9.20.orig/arch/h8300/Kconfig.cpu linux-4.9.20/arch/h8300/Kconfig.cpu
  2. --- linux-4.9.20.orig/arch/h8300/Kconfig.cpu 2017-03-31 10:32:02.000000000 +0200
  3. +++ linux-4.9.20/arch/h8300/Kconfig.cpu 2017-04-04 08:10:00.132205323 +0200
  4. @@ -96,4 +96,8 @@
  5. hex "Load offset"
  6. default 0
  7. +config RAMBASE
  8. + hex "RAM base address"
  9. + default 0x400000
  10. +
  11. endmenu
  12. diff -Nur linux-4.9.60.orig/arch/h8300/boot/dts/h8300h_sim.dts linux-4.9.60/arch/h8300/boot/dts/h8300h_sim.dts
  13. --- linux-4.9.60.orig/arch/h8300/boot/dts/h8300h_sim.dts 2017-11-02 09:49:15.000000000 +0100
  14. +++ linux-4.9.60/arch/h8300/boot/dts/h8300h_sim.dts 2017-12-24 11:30:55.121463793 +0100
  15. @@ -37,7 +37,7 @@
  16. memory@400000 {
  17. device_type = "memory";
  18. - reg = <0x400000 0x400000>;
  19. + reg = <0x400000 0x800000>;
  20. };
  21. cpus {
  22. diff -Nur linux-4.9.60.orig/drivers/tty/serial/sh-sci.c linux-4.9.60/drivers/tty/serial/sh-sci.c
  23. --- linux-4.9.60.orig/drivers/tty/serial/sh-sci.c 2017-11-02 09:49:15.000000000 +0100
  24. +++ linux-4.9.60/drivers/tty/serial/sh-sci.c 2017-12-24 11:30:55.121463793 +0100
  25. @@ -986,8 +986,6 @@
  26. /* overrun error */
  27. if (tty_insert_flip_char(tport, 0, TTY_OVERRUN))
  28. copied++;
  29. -
  30. - dev_notice(port->dev, "overrun error\n");
  31. }
  32. if (status & SCxSR_FER(port)) {
  33. @@ -1060,7 +1058,6 @@
  34. tty_insert_flip_char(tport, 0, TTY_OVERRUN);
  35. tty_flip_buffer_push(tport);
  36. - dev_dbg(port->dev, "overrun error\n");
  37. copied++;
  38. }