1. 02 10月, 2015 1 次提交
  2. 20 10月, 2014 1 次提交
  3. 13 11月, 2013 1 次提交
  4. 13 9月, 2013 1 次提交
  5. 12 9月, 2013 1 次提交
  6. 20 8月, 2013 1 次提交
  7. 04 7月, 2013 3 次提交
  8. 01 5月, 2013 2 次提交
  9. 30 4月, 2013 1 次提交
  10. 28 2月, 2013 2 次提交
  11. 14 2月, 2013 5 次提交
  12. 19 1月, 2013 1 次提交
    • J
      tty: Added a CONFIG_TTY option to allow removal of TTY · 4f73bc4d
      Joe Millenbach 提交于
      The option allows you to remove TTY and compile without errors. This
      saves space on systems that won't support TTY interfaces anyway.
      bloat-o-meter output is below.
      
      The bulk of this patch consists of Kconfig changes adding "depends on
      TTY" to various serial devices and similar drivers that require the TTY
      layer.  Ideally, these dependencies would occur on a common intermediate
      symbol such as SERIO, but most drivers "select SERIO" rather than
      "depends on SERIO", and "select" does not respect dependencies.
      
      bloat-o-meter output comparing our previous minimal to new minimal by
      removing TTY.  The list is filtered to not show removed entries with awk
      '$3 != "-"' as the list was very long.
      
      add/remove: 0/226 grow/shrink: 2/14 up/down: 6/-35356 (-35350)
      function                                     old     new   delta
      chr_dev_init                                 166     170      +4
      allow_signal                                  80      82      +2
      static.__warned                              143     142      -1
      disallow_signal                               63      62      -1
      __set_special_pids                            95      94      -1
      unregister_console                           126     121      -5
      start_kernel                                 546     541      -5
      register_console                             593     588      -5
      copy_from_user                                45      40      -5
      sys_setsid                                   128     120      -8
      sys_vhangup                                   32      19     -13
      do_exit                                     1543    1526     -17
      bitmap_zero                                   60      40     -20
      arch_local_irq_save                          137     117     -20
      release_task                                 674     652     -22
      static.spin_unlock_irqrestore                308     260     -48
      Signed-off-by: NJoe Millenbach <jmillenbach@gmail.com>
      Reviewed-by: NJamey Sharp <jamey@minilop.net>
      Reviewed-by: NJosh Triplett <josh@joshtriplett.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      4f73bc4d
  13. 04 1月, 2013 1 次提交
    • G
      Drivers: misc: remove __dev* attributes. · 0fe763c5
      Greg Kroah-Hartman 提交于
      CONFIG_HOTPLUG is going away as an option.  As a result, the __dev*
      markings need to be removed.
      
      This change removes the use of __devinit, __devexit_p, __devinitdata,
      __devinitconst, and __devexit from these drivers.
      
      Based on patches originally written by Bill Pemberton, but redone by me
      in order to handle some of the coding style issues better, by hand.
      
      Cc: Bill Pemberton <wfp5p@virginia.edu>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      0fe763c5
  14. 01 11月, 2012 1 次提交
  15. 06 10月, 2012 1 次提交
  16. 31 7月, 2012 1 次提交
  17. 06 3月, 2012 1 次提交
  18. 03 11月, 2011 3 次提交
  19. 31 3月, 2011 1 次提交
  20. 23 3月, 2011 1 次提交
  21. 17 3月, 2011 1 次提交
  22. 05 3月, 2011 1 次提交
    • T
      pps: make pps_gen_parport depend on BROKEN · 95b90afe
      Thomas Gleixner 提交于
      This driver causes hard lockups, when the active clock soure is jiffies.
      
      The reason is that it loops with interrupts disabled waiting for a
      timestamp to be reached by polling getnstimeofday().  Though with a
      jiffies clocksource, when that code runs on the same CPU which is
      responsible for updating jiffies, then we loop in circles for ever
      simply because the timer interrupt cannot update jiffies.  So both UP
      and SMP can be affected.
      
      There is no easy fix for that problem so make it depend on BROKEN for
      now.
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      Cc: Alexander Gordeev <lasaine@lvk.cs.msu.su>
      Cc: Rodolfo Giometti <giometti@linux.it>
      Cc: john stultz <johnstul@us.ibm.com>
      Cc: Ingo Molnar <mingo@elte.hu>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      95b90afe
  23. 26 2月, 2011 1 次提交
  24. 26 1月, 2011 2 次提交
  25. 14 1月, 2011 5 次提交