1. 03 6月, 2014 1 次提交
    • W
      i2c: nuc900: remove driver · 7da62cb1
      Wolfram Sang 提交于
      Arnd said in another patch:
      
      "As far as I can tell, this driver must have produced this
      error for as long as it has been merged into the mainline kernel, but
      it was never part of the normal build tests:
      
      drivers/i2c/busses/i2c-nuc900.c: In function 'nuc900_i2c_probe':
      drivers/i2c/busses/i2c-nuc900.c:601:17: error: request for member
      'apbfreq' in something not a structure or union
        ret = (i2c->clk.apbfreq)/(pdata->bus_freq * 5) - 1;
                       ^
      This is an attempt to get the driver to build and possibly
      work correctly, although I do wonder whether we should just
      remove it, as it has clearly never worked."
      
      I agree with removing it since nobody showed interest in Arnd's fixup
      patch.
      Reported-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NWolfram Sang <wsa@the-dreams.de>
      Cc: Wan ZongShun <mcuos.com@gmail.org>
      Acked-by: NArnd Bergmann <arnd@arndb.de>
      7da62cb1
  2. 22 5月, 2014 1 次提交
  3. 08 4月, 2014 1 次提交
  4. 07 4月, 2014 1 次提交
    • W
      i2c: cadence: fix Kconfig dependency · 1fbeab0b
      Wolfram Sang 提交于
      During development, the driver first really needed to depend on
      COMMON_CLK only. Later, it was switched to writel_relaxed, but it was
      forgotten to update the dependencies, so build errors occured:
      
      config: make ARCH=i386 allyesconfig
      
      All error/warnings:
      
         drivers/i2c/busses/i2c-cadence.c: In function 'cdns_i2c_clear_bus_hold':
      >> drivers/i2c/busses/i2c-cadence.c:168:3: error: implicit declaration
      >> of function 'writel_relaxed' [-Werror=implicit-function-declaration]
      
      Use a very safe dependency for now.
      Signed-off-by: NWolfram Sang <wsa@the-dreams.de>
      1fbeab0b
  5. 06 4月, 2014 1 次提交
  6. 29 3月, 2014 1 次提交
  7. 28 3月, 2014 1 次提交
  8. 14 3月, 2014 1 次提交
  9. 10 3月, 2014 1 次提交
  10. 07 3月, 2014 1 次提交
  11. 06 3月, 2014 1 次提交
  12. 25 1月, 2014 1 次提交
  13. 13 1月, 2014 2 次提交
  14. 04 1月, 2014 1 次提交
  15. 02 1月, 2014 1 次提交
  16. 16 11月, 2013 1 次提交
  17. 15 11月, 2013 2 次提交
  18. 01 11月, 2013 1 次提交
  19. 31 10月, 2013 1 次提交
  20. 13 9月, 2013 1 次提交
  21. 15 8月, 2013 1 次提交
  22. 01 7月, 2013 1 次提交
  23. 21 6月, 2013 1 次提交
  24. 20 6月, 2013 1 次提交
  25. 15 6月, 2013 2 次提交
  26. 11 6月, 2013 1 次提交
  27. 06 6月, 2013 1 次提交
  28. 04 6月, 2013 1 次提交
  29. 16 4月, 2013 1 次提交
  30. 11 3月, 2013 1 次提交
  31. 16 2月, 2013 1 次提交
  32. 12 2月, 2013 1 次提交
  33. 11 2月, 2013 2 次提交
  34. 09 2月, 2013 1 次提交
  35. 22 1月, 2013 1 次提交
  36. 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