1. 25 4月, 2014 2 次提交
  2. 18 12月, 2013 1 次提交
  3. 09 12月, 2013 1 次提交
    • S
      tty: xuartps: Properly guard sysrq specific code · 39669f3a
      Soren Brinkmann 提交于
      Commit 'tty: xuartps: Implement BREAK detection, add SYSRQ support'
      (0c0c47bc) introduced sysrq support
      without properly guarding sysrq specific code which results in build
      errors when sysrq is disabled:
      	DNAME=KBUILD_STR(xilinx_uartps)" -c -o
      	drivers/tty/serial/.tmp_xilinx_uartps.o
      	drivers/tty/serial/xilinx_uartps.c
      	drivers/tty/serial/xilinx_uartps.c: In function 'xuartps_isr':
      	drivers/tty/serial/xilinx_uartps.c:247:5: error: 'struct uart_port'
      	has no member named 'sysrq'
      	drivers/tty/serial/xilinx_uartps.c:247:5: error: 'struct uart_port'
      	has no member named 'sysrq'
      	drivers/tty/serial/xilinx_uartps.c:247:5: error: 'struct uart_port'
      	has no member named 'sysrq'
      	make[3]: *** [drivers/tty/serial/xilinx_uartps.o] Error 1
      Reported-by: NMasanari Iida <standby24x7@gmail.com>
      Cc: Vlad Lungu <vlad.lungu@windriver.com>
      Signed-off-by: NSoren Brinkmann <soren.brinkmann@xilinx.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      39669f3a
  4. 30 10月, 2013 3 次提交
  5. 20 10月, 2013 10 次提交
  6. 04 6月, 2013 1 次提交
  7. 27 5月, 2013 1 次提交
  8. 21 5月, 2013 1 次提交
  9. 26 3月, 2013 2 次提交
  10. 23 1月, 2013 1 次提交
  11. 22 1月, 2013 1 次提交
  12. 16 1月, 2013 1 次提交
    • J
      TTY: switch tty_flip_buffer_push · 2e124b4a
      Jiri Slaby 提交于
      Now, we start converting tty buffer functions to actually use
      tty_port. This will allow us to get rid of the need of tty in many
      call sites. Only tty_port will needed and hence no more
      tty_port_tty_get in those paths.
      
      Now, the one where most of tty_port_tty_get gets removed:
      tty_flip_buffer_push.
      
      IOW we also closed all the races in drivers not using tty_port_tty_get
      at all yet.
      
      Also we move tty_flip_buffer_push declaration from include/linux/tty.h
      to include/linux/tty_flip.h to all others while we are changing it
      anyway.
      Signed-off-by: NJiri Slaby <jslaby@suse.cz>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      2e124b4a
  13. 22 11月, 2012 3 次提交
  14. 16 11月, 2012 1 次提交
  15. 01 11月, 2011 1 次提交
  16. 23 9月, 2011 1 次提交
    • J
      TTY: serial, fix includes in some drivers · ee160a38
      Jiri Slaby 提交于
      linux/tty_flip.h is included in linux/serial_core.h. But this may (and
      will) change in the future. Then we would get build errors such as:
      .../tty/serial/max3107.c: In function ‘put_data_to_circ_buf’:
      .../tty/serial/max3107.c:149:2: error: implicit declaration of function ‘tty_insert_flip_string’
      
      So fix all the drviers which call tty flip buffer helpers to really
      include linux/tty_flip.h. And also make sure that those include
      linux/tty.h when operating with struct tty_struct.
      Signed-off-by: NJiri Slaby <jslaby@suse.cz>
      Cc: Alan Cox <alan@linux.intel.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      ee160a38
  17. 04 5月, 2011 1 次提交