Skip to content
  1. Jul 13, 2010
    • Linus Torvalds's avatar
      Linux 2.6.35-rc5 · 1c5474a6
      Linus Torvalds authored
      1c5474a6
    • Linus Torvalds's avatar
      Merge branch 'arm/defconfig/reduced-v2.6.35-rc1' of git://git.pengutronix.de/git/ukl/linux-2.6 · c2330e28
      Linus Torvalds authored
      
      
      * 'arm/defconfig/reduced-v2.6.35-rc1' of git://git.pengutronix.de/git/ukl/linux-2.6:
        ARM: reduce defconfigs
      
      This is a big change, but results in no loss of information, despite us
      losing almost 200k lines:
      
       177 files changed, 652 insertions(+), 194157 deletions(-)
      
      and Grant Likely thinks powerpc can also use the same reduction
      technique.
      
      The python script that did the reduction looks like this:
      
          #! /usr/bin/env python
          # vim: set fileencoding=utf-8 :
          # Copyright (C) 2010 by Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
      
          import re
          import subprocess
          import os
          import sys
      
          # This prevents including a timestamp in the .config which makes comparing a
          # bit easier.
          os.environ['KCONFIG_NOTIMESTAMP'] = 'Yes, please'
      
          # XXX: get these using getopt
          kernel_tree = '' # os.path.join(os.environ['HOME'], 'gsrc', 'linux-2.6')
          arch = 'arm'
          target = sys.argv[1]
          defconfig_src = os.path.join(kernel_tree, 'arch/%s/configs/%s' % (arch, target))
      
          subprocess.check_call(['make', '-s', 'ARCH=%s' % arch, target])
          origconfig = list(open('.config'))
          config = list(origconfig)
          config_size = os.stat('.config').st_size
      
          i = 0
      
          while i < len(config):
              print 'test for %r' % config[i]
              defconfig = open(defconfig_src, 'w')
              defconfig.writelines(config[:i])
              defconfig.writelines(config[i + 1:])
              defconfig.close()
              subprocess.check_call(['make', '-s', 'ARCH=%s' % arch, target])
              if os.stat('.config').st_size == config_size and list(open('.config')) == origconfig:
                  del config[i]
              else:
                  i += 1
      
          defconfig = open(defconfig_src, 'w')
          defconfig.writelines(config)
          defconfig.close()
      
      which is pretty self-explanatory.
      
      Acked-by: default avatarNicolas Pitre <nico@fluxnic.net>
      Acked-by: default avatarRussell King <linux@arm.linux.org.uk>
      Acked-by: default avatarGrant Likely <grant.likely@secretlab.ca>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      c2330e28
    • Linus Torvalds's avatar
      Merge branch 'fix/hda' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6 · 7e48c028
      Linus Torvalds authored
      * 'fix/hda' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6:
        ALSA: hda - Restore cleared pin controls on resume
      7e48c028
    • Linus Torvalds's avatar
      Merge branch 'v4l_for_2.6.35' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6 · 9f719637
      Linus Torvalds authored
      * 'v4l_for_2.6.35' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6:
        V4L/DVB: uvc: Fix multiple symbols definitions with UVC gadget and host drivers
        V4L/DVB: v4l: mem2mem_testdev: fix g_fmt NULL pointer dereference
        V4L/DVB: uvcvideo: Power line frequency control doesn't support GET_MIN/MAX/RES
        V4L/DVB: ivtv: Add delay to ensure the decoder always restarts with a blank screen
        V4L/DVB: Documentation: Add the Philips FQ1236 MK5 to video4linux/CARDLIST.tuner
        V4L/DVB: tveeprom: Add an entry for tuner code 168: a TCL M30WTP-4N-E tuner
        V4L/DVB: tuner: Add a definition for the Philips FQ1236 MK5 NTSC tuner
        V4L/DVB: OMAP_VOUT: fix: Module params were not working through bootargs
        V4L/DVB: OMAP_VOUT: fix: Replaced dma-sg with dma-contig
        V4L/DVB: OMAP_VOUT:Build FIX: Rebased against latest DSS2 changes
      9f719637
    • Linus Torvalds's avatar
      Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid · 293ffa8f
      Linus Torvalds authored
      * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid:
        HID: Send Report ID when numbered reports are sent over the control endpoint.
        HID: Enable HID_QUIRK_MULTI_INPUT for Retro Adaptor
        HID: add support for CH Eclipse yoke
        HID: eliminate a double lock in debug code
        HID: ntrig: add support for new firwmare versions
        HID: check for HID_QUIRK_IGNORE during probing
        HID: roccat: fix modules interdependencies
      293ffa8f
    • Joe Perches's avatar
      MAINTAINERS: fix EDAC-I7CORE file patterns · 70aff0ce
      Joe Perches authored
      
      
      File patterns are one per line.
      Fixed include file location.
      
      Signed-off-by: default avatarJoe Perches <joe@perches.com>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      70aff0ce
  2. Jul 12, 2010
  3. Jul 10, 2010
  4. Jul 09, 2010
  5. Jul 08, 2010