Skip to content
  1. Feb 05, 2008
  2. Feb 04, 2008
  3. Feb 03, 2008
  4. Feb 01, 2008
  5. Jan 28, 2008
  6. Jan 26, 2008
  7. Jan 25, 2008
    • Greg Kroah-Hartman's avatar
      kobject: convert icom to use kref, not kobject · 15f2bbb2
      Greg Kroah-Hartman authored
      
      
      The IBM icom serial driver is using a kobject only for reference
      counting, nothing else.  So switch it to use a kref instead, which is
      all that is needed, and is much smaller.
      
      Cc: Anton Blanchard <anton@au.ibm.com>
      Cc: Paul Mackerras <paulus@au.ibm.com>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Ryan S. Arnold <rsa@us.ibm.com>
      Cc: Kay Sievers <kay.sievers@vrfy.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      15f2bbb2
  8. Jan 24, 2008
  9. Jan 21, 2008
  10. Jan 17, 2008
  11. Jan 09, 2008
  12. Dec 29, 2007
    • David S. Miller's avatar
      [SERIAL]: Fix section mismatches in Sun serial console drivers. · fb445ee5
      David S. Miller authored
      
      
      We're exporting an __init function, oops :-)
      
      The core issue here is that add_preferred_console() is marked
      as __init, this makes it impossible to invoke this thing from
      a driver probe routine which is what the Sparc serial drivers
      need to do.
      
      There is no harm in dropping the __init marker.  This code will
      actually work properly when invoked from a modular driver,
      except that init will probably not pick up the console change
      without some other support code.
      
      Then we can drop the __init from sunserial_console_match()
      and we're no longer exporting an __init function to modules.
      
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      fb445ee5
  13. Dec 14, 2007
  14. Dec 12, 2007
    • Martin Habets's avatar
      [SERIAL] sparc: Infrastructure to fix section mismatch bugs. · 58d784a5
      Martin Habets authored
      
      
      This patch against 2.6.23 sparc-2.6.git contains a number of minor
      cleanups of the sparc serial drivers.  Initially I fixed this build
      warning:
      
      WARNING: vmlinux.o(.text+0x107a2c): Section mismatch: reference to .init.text:add_preferred_console (between 'sunserial_console_match' and 'sunserial_console_termios')
      
      which is done by declaring sunserial_console_match() as __init.  This
      resulted in build warnings on sunserial_current_minor.  To resolve
      these the variable was changed so it is no longer global, and to hide
      operations on it inside 2 new functions. These functions handle the
      UART minor handling code that is common to all sparc serial drivers.
      
      These changes allowed to clean up the uart counters in all the sparc
      serial drivers, and the administration of minor device numbers.
      
      Lastly, sunserial_console_termios() does not need to be exported since
      it is only called from non-modular code.
      
      Sadly, the following build warning still exists:
      
      WARNING: vmlinux.o(__ksymtab+0x2910): Section mismatch: reference to .init.text:sunserial_console_match (between '__ksymtab_sunserial_console_match' and '__ksymtab_sunserial_unregister_minors')
      
      This could be resolved by not exporting sunserial_console_match(), but
      this is not possible at the moment because it is being called from
      modular code. On the other hand, this is a bogus warning since it
      comes from a ksymtab section.
      
      Signed-off-by: default avatarMartin Habets <errandir_news@mph.eclipse.co.uk>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      58d784a5
  15. Dec 11, 2007
  16. Nov 29, 2007
  17. Nov 26, 2007
  18. Jan 22, 2008
  19. Nov 23, 2007
Loading