1. 17 5月, 2012 5 次提交
  2. 16 5月, 2012 1 次提交
  3. 04 5月, 2012 1 次提交
  4. 27 4月, 2012 1 次提交
  5. 26 4月, 2012 4 次提交
  6. 29 3月, 2012 1 次提交
  7. 28 3月, 2012 1 次提交
  8. 22 2月, 2012 1 次提交
    • J
      isdn: whitespace coding style cleanup · 475be4d8
      Joe Perches 提交于
      isdn source code uses a not-current coding style.
      
      Update the coding style used on a per-line basis
      so that git diff -w shows only elided blank lines
      at EOF.
      
      Done with emacs and some scripts and some typing.
      
      Built x86 allyesconfig.
      No detected change in objdump -d or size.
      Signed-off-by: NJoe Perches <joe@perches.com>
      475be4d8
  9. 13 2月, 2012 1 次提交
  10. 03 2月, 2012 1 次提交
  11. 13 1月, 2012 1 次提交
  12. 19 11月, 2011 1 次提交
    • G
      USB: convert some miscellanies drivers to use module_usb_driver() · fe748483
      Greg Kroah-Hartman 提交于
      This converts the remaining USB drivers in the kernel to use the
      module_usb_driver() macro which makes the code smaller and a bit
      simpler.
      
      Added bonus is that it removes some unneeded kernel log messages about
      drivers loading and/or unloading.
      
      Cc: Guenter Roeck <guenter.roeck@ericsson.com>
      Cc: Jean Delvare <khali@linux-fr.org>
      Cc: Ben Dooks <ben-linux@fluff.org>
      Cc: Till Harbaum <till@harbaum.org>
      Cc: Karsten Keil <isdn@linux-pingi.de>
      Cc: Chris Ball <cjb@laptop.org>
      Cc: David Woodhouse <dwmw2@infradead.org>
      Cc: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
      Cc: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
      Cc: Samuel Ortiz <sameo@linux.intel.com>
      Cc: Steve Glendinning <steve.glendinning@smsc.com>
      Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
      Cc: Evgeniy Polyakov <zbr@ioremap.net>
      Cc: Wim Van Sebroeck <wim@iguana.be>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Jesper Juhl <jj@chaosbits.net>
      Cc: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
      Cc: Jamie Iles <jamie@jamieiles.com>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      fe748483
  13. 01 11月, 2011 1 次提交
  14. 12 6月, 2011 1 次提交
  15. 07 6月, 2011 1 次提交
  16. 26 5月, 2011 2 次提交
    • M
      isdn/diva: Drop __TIME__ usage · 3df3f2bf
      Michal Marek 提交于
      The kernel already prints its build timestamp during boot, no need to
      repeat it in random drivers and produce different object files each
      time.
      
      Cc: Armin Schindler <mac@melware.de>
      Cc: netdev@vger.kernel.org
      Signed-off-by: NMichal Marek <mmarek@suse.cz>
      3df3f2bf
    • P
      isdn: netjet - blacklist Digium TDM400P · 367bbf2a
      Prarit Bhargava 提交于
      [2nd try ... 1st attempt didn't make it to netdev mailing list]
      
      A quick google search reveals that people with this card are blacklisting it
      in the initramfs and in the module blacklist based on a statement that it
      is unsupported. Since the older Digium is also unsupported I'm pretty
      confident that this newer card is also not supported.
      
      lspci -xxx -vv shows
      
      04:07.0 Communication controller: Tiger Jet Network Inc. Tiger3XX Modem/ISDN interface
              Subsystem: Device b100:0003
      P.
      
      ----8<----
      The Asterisk Voice Card, DIGIUM TDM400P is unsupported by the netjet driver.
      Blacklist it like the Digium X100P/X101P card.
      Signed-off-by: NPrarit Bhargava <prarit@redhat.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      367bbf2a
  17. 06 5月, 2011 1 次提交
  18. 18 4月, 2011 3 次提交
  19. 31 3月, 2011 1 次提交
  20. 01 3月, 2011 1 次提交
  21. 16 11月, 2010 1 次提交
  22. 02 11月, 2010 1 次提交
  23. 28 10月, 2010 1 次提交
    • J
      drivers/isdn: delete double assignment · 4101e976
      Julia Lawall 提交于
      Delete successive assignments to the same location.  In the first case, the
      hscx array has two elements, so change the assignment to initialize the
      second one.  In the second case, the two assignments are simply identical.
      Furthermore, neither is necessary, because the effect of the assignment is
      only visible in the next line, in the assignment in the if test.  The patch
      inlines the right hand side value in the latter assignment and pulls that
      assignment out of the if test.
      
      A simplified version of the semantic match that finds this problem is as
      follows: (http://coccinelle.lip6.fr/)
      
      // <smpl>
      @@
      expression i;
      @@
      
      *i = ...;
       i = ...;
      // </smpl>
      Signed-off-by: NJulia Lawall <julia@diku.dk>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      4101e976
  24. 17 10月, 2010 1 次提交
  25. 07 10月, 2010 1 次提交
    • D
      eicon: make buffer larger · c2dddf94
      Dan Carpenter 提交于
      In diva_mnt_add_xdi_adapter() we do this:
        strcpy (clients[id].drvName,     tmp);
        strcpy (clients[id].Dbg.drvName, tmp);
      
      The "clients[id].drvName" is a 128 character buffer and
      "clients[id].Dbg.drvName" was originally a 16 character buffer but I've
      changed it to 128 as well.  We don't actually use 128 characters but we
      do use more than 16.
      
      I've also changed the size of "tmp" to 128 characters instead of 256.
      Signed-off-by: NDan Carpenter <error27@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      c2dddf94
  26. 29 9月, 2010 5 次提交