1. 16 Jan, 2009 7 commits
  2. 15 Jan, 2009 29 commits
  3. 14 Jan, 2009 4 commits
    • Takashi Iwai's avatar
      ALSA: hda - Fix HP dv5 mic input · 1b0652eb
      Takashi Iwai authored
      Fix HP dv5 (103c:3603) built-in mic input.
      
      Reference: kernel bug 12440
      	http://bugzilla.kernel.org/show_bug.cgi?id=12440Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      Cc: stable@kernel.org
      1b0652eb
    • Ben Dooks's avatar
      IDE: fix sparse signed-ness errors with host->host_busy · e720b9e4
      Ben Dooks authored
      The host_busy field in struct ide_host defaults to a
      signed-long, where most arch's test_and_set_bit_*
      macros use an unsigned long.
      
      Change to using an unsigned long, which on ARM removes
      the following sparse errors:
      
      drivers/ide/ide-io.c:681:8: warning: incorrect type in argument 2 (different signedness)
      drivers/ide/ide-io.c:681:8:    expected unsigned long volatile *p
      drivers/ide/ide-io.c:681:8:    got long volatile *<noident>
      drivers/ide/ide-io.c:681:8: warning: incorrect type in argument 2 (different signedness)
      drivers/ide/ide-io.c:681:8:    expected unsigned long volatile *p
      drivers/ide/ide-io.c:681:8:    got long volatile *<noident>
      drivers/ide/ide-io.c:695:3: warning: incorrect type in argument 2 (different signedness)
      drivers/ide/ide-io.c:695:3:    expected unsigned long volatile *p
      drivers/ide/ide-io.c:695:3:    got long volatile *<noident>
      drivers/ide/ide-io.c:695:3: warning: incorrect type in argument 2 (different signedness)
      drivers/ide/ide-io.c:695:3:    expected unsigned long volatile *p
      drivers/ide/ide-io.c:695:3:    got long volatile *<noident>
      drivers/ide/ide-io.c:695:3: warning: incorrect type in argument 2 (different signedness)
      drivers/ide/ide-io.c:695:3:    expected unsigned long volatile *p
      drivers/ide/ide-io.c:695:3:    got long volatile *<noident>
      drivers/ide/ide-io.c:695:3: warning: incorrect type in argument 2 (different signedness)
      drivers/ide/ide-io.c:695:3:    expected unsigned long volatile *p
      drivers/ide/ide-io.c:695:3:    got long volatile *<noident>
      drivers/ide/ide-io.c:695:3: warning: incorrect type in argument 2 (different signedness)
      drivers/ide/ide-io.c:695:3:    expected unsigned long volatile *p
      drivers/ide/ide-io.c:695:3:    got long volatile *<noident>
      drivers/ide/ide-io.c:695:3: warning: incorrect type in argument 2 (different signedness)
      drivers/ide/ide-io.c:695:3:    expected unsigned long volatile *p
      drivers/ide/ide-io.c:695:3:    got long volatile *<noident>
      drivers/ide/ide-io.c:695:3: warning: incorrect type in argument 2 (different signedness)
      drivers/ide/ide-io.c:695:3:    expected unsigned long volatile *p
      drivers/ide/ide-io.c:695:3:    got long volatile *<noident>
      drivers/ide/ide-io.c:695:3: warning: incorrect type in argument 2 (different signedness)
      drivers/ide/ide-io.c:695:3:    expected unsigned long volatile *p
      drivers/ide/ide-io.c:695:3:    got long volatile *<noident>
      Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
      Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
      e720b9e4
    • Bartlomiej Zolnierkiewicz's avatar
      ide: fix suspend regression · 2ea55210
      Bartlomiej Zolnierkiewicz authored
      On Monday 12 January 2009, Simon Holm Thøgersen wrote:
      > commit 295f0004 ("ide: don't execute the next queued command from the
      > hard-IRQ context (v2)") breaks suspend to disk for me. On
      > 'echo disk > /sys/power/state' the systems hangs, letting me switch
      > virtual consoles, but not responding to Alt+SysRq
      
      Restart the request queue early for REQ_TYPE_PM_RESUME requests
      (though there is only one resume request for the whole resume
      sequence it stays in the queue until is fully completed and now
      depends on kblockd for processing consequential resume states).
      Reported-and-bisected-by: default avatarSimon Holm Thøgersen <odie@cs.aau.dk>
      Tested-by: default avatarSimon Holm Thøgersen <odie@cs.aau.dk>
      Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
      2ea55210
    • Atsushi Nemoto's avatar