1. 02 Mar, 2005 5 commits
    • Jean Delvare's avatar
      [PATCH] I2C: Kill i2c_client.id (2/5) · 24e36cfe
      Jean Delvare authored
      (2/5) Stop using i2c_client.id in media/video drivers.
      
      Affected drivers:
      * adv7170
      * adv7175
      * bt819
      * bt856
      * bttv
      * cx88
      * ovcamchip
      * saa5246a
      * saa5249
      * saa7110
      * saa7111
      * saa7114
      * saa7134
      * saa7185
      * tda7432
      * tda9840
      * tda9875
      * tea6415c
      * tea6420
      * tuner-3036
      * vpx3220
      
      Most drivers here would include the id as part of their i2c client name
      (e.g. adv7170[0]). This looks more like an habit than something really
      needed, so I replaced the various printf by strlcpy, which should be
      slightly faster. As said earlier, clients can be differenciated thanks
      to their bus id and address if needed, so I don't think that including
      this information in the client name is wise anyway.
      
      Other drivers would either set the id to -1 or to a unique value but
      then never use it. These drivers are unaffected by the changes.
      Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
      24e36cfe
    • Jean Delvare's avatar
      [PATCH] I2C: Kill i2c_client.id (1/5) · 0e11d70c
      Jean Delvare authored
      (1/5) Stop using i2c_client.id in i2c/chips drivers (mostly hardware
            monitoring drivers).
      
      Drivers affected:
      * adm1021
      * adm1025
      * adm1026
      * adm1031
      * ds1621
      * fscher
      * gl518sm
      * isp1301_omap
      * lm75
      * lm77
      * lm80
      * lm83
      * lm85
      * lm87
      * lm90
      * max1619
      * pcf8574
      * pcf8591
      * rtc8564
      * smsc47m1
      * w83l785ts
      
      The vast majority of these drivers simply defined the i2c_client id
      struct member but never used it, so they are not affected at all by the
      change. Exceptions are:
      
      * lm85 and rtc8564, which would at least display the id in a debug
      message when assigning it. Not really useful though, as the id was then
      never used.
      
      * adm1026, which used the assigned id in all driver messages. However,
      since dev_* calls will append the bus number and client address to these
      messages, the id information is redundant and can go away. Also, the
      driver would allow some GPIO reprogramming on the first client only
      (id=0) and removing the id doesn't allow that anymore. I would restore a
      similar functionality if needed, but the ADM1026 chip is found on very
      few motherboards and none of these has more than one ADM1026 chip AFAIK,
      so it doesn't seem to be worth the effort.
      Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
      0e11d70c
    • Greg Kroah-Hartman's avatar
    • Jean Delvare's avatar
      [PATCH] I2C: Allow it87 pwm reconfiguration · 8929157c
      Jean Delvare authored
      Quoting myself:
      
      > As soon as you will have confirmed that everything worked as expected,
      > Jonas and I will provide a patch adding a pwm polarity reconfiguration
      > module parameter for you to test. This should give you access to the
      > PWM features of your it87 chip again, but in a safe way for a change
      > ;)
      
      Here comes this patch. The new "fix_pwm_polarity" module parameter
      allows one to force the it87 chip reconfiguration. This is only
      supported in the case the original PWM configuration is suspected to be
      bogus, and only if we think that reconfiguring the chip is safe.
      
      I wish to thank Rudolf Marek and Jonas Munsin again for their testing
      and review of my code.
      Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
      8929157c
    • Stefan Ott's avatar
      [PATCH] I2C: add fscpos chip driver · bcc32d22
      Stefan Ott authored
      This patch against 2.6.11-rc1 contains a driver for fscpos sensors.
      Signed-off-by: default avatarStefan Ott <stefan@desire.ch>
      Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
      bcc32d22
  2. 01 Mar, 2005 14 commits
  3. 28 Feb, 2005 15 commits
    • Ben Dooks's avatar
      [ARM PATCH] 2505/1: Remove FTVPCI from debug code · 1c97eab8
      Ben Dooks authored
      Patch from Ben Dooks
      
      Remove the currently #if'ed out FTVPCI debug code
      from arch/arm/kernel/debug.S as FTVPCI has no current
      build candidate.
      
      Signed-off-by: Ben Dooks
      Signed-off-by: Russell King
      1c97eab8
    • Ben Dooks's avatar
      [ARM PATCH] 2498/1: CREDITS - add Ben Dooks · 5a421fa6
      Ben Dooks authored
      Patch from Ben Dooks
      
      Add Ben Dooks to the credits file
      
      Signed-off-by: Ben Dooks
      Signed-off-by: Russell King
      5a421fa6
    • Sascha Hauer's avatar
      [ARM PATCH] 2497/1: i.MX pll decode · 82b38812
      Sascha Hauer authored
      Patch from Sascha Hauer
      
      This patch provided by Pavel Pisa fixes a wrong bitmask in
      imx_decode_pll.
      Sascha Hauer
      
      Signed-off-by: Pavel Pisa
      
      Signed-off-by: Sascha Hauer
      Signed-off-by: Russell King
      82b38812
    • Sascha Hauer's avatar
      [ARM PATCH] 2496/1: i.MX DMA fix · b8d45999
      Sascha Hauer authored
      Patch from Sascha Hauer
      
      This patch fixes the handling of the dma interrupt acknowledge register (DISR).
      A DMA interrupt is acknowledged by setting the corresponding bit in
      DISR. So we are not allowed to use |= on this register because we could
      lose interrupts.
      Sascha Hauer
      
      Signed-off-by: Sascha Hauer
      Signed-off-by: Russell King
      b8d45999
    • Alex Williamson's avatar
      [SERIAL] 8250 woraround for buggy uart · 25f34d0f
      Alex Williamson authored
      Patch from Alex Williamson
      
      This patch adds support for detecting and working around a bug in
      the A2 rev of the Exar ST16C2550 UART.  The chip incorrectly
      advertises an EFR and mis-detects as having the wrong size FIFO.
      Much of the patch below is Russell's proposed solution to the
      problem.  The only changes I've made are to check the FIFO size
      on the part (because there is a real part with the same divisor
      ID and larger FIFO) and save and restore the LCR register around
      the size_fifo() routine (it doesn't work correctly with a LCR
      value of 0xBF).
      
      Signed-off-by: Alex Williamson
      Signed-off-by: Russell King
      25f34d0f
    • Randy Dunlap's avatar
      [PATCH] rrunner: fix section references · a847f564
      Randy Dunlap authored
      rrunner: references __initdata in a __devinit function; data should
        be __devinitdata;
      
      Error: ./drivers/net/rrunner.o .text refers to 00000000000002b2 R_X86_64_32S      .init.data
      Signed-off-by: default avatarRandy Dunlap <rddunlap@osdl.org>
      Signed-off-by: default avatarJes Sorensen <jes@wildopensource.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      a847f564
    • Randy Dunlap's avatar
      [PATCH] hp100: fix section references · c6f68779
      Randy Dunlap authored
      hp100: references __init code that should be marked as __devinit;
      
      Error: ./drivers/net/hp100.o .text refers to 0000000000000f7f R_X86_64_PC32     .init.text+0x00000000000000b8
      Signed-off-by: default avatarRandy Dunlap <rddunlap@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      c6f68779
    • Randy Dunlap's avatar
      [PATCH] dc395x: fix section references · 9b323e0f
      Randy Dunlap authored
      dc395x scsi driver makes many references to __init functions &
      __initdata that should be __devinit & __devinitdata.
      
      Error: ./drivers/scsi/dc395x.o .text refers to 00000000000021ef R_X86_64_PC32     .init.text+0x00000000000000b4
      Error: ./drivers/scsi/dc395x.o .text refers to 000000000000220e R_X86_64_PC32     .init.text+0x000000000000009c
      Error: ./drivers/scsi/dc395x.o .text refers to 000000000000222e R_X86_64_PC32     .init.text+0x000000000000009c
      Error: ./drivers/scsi/dc395x.o .text refers to 00000000000022f4 R_X86_64_PC32     .init.text+0x0000000000000177
      Error: ./drivers/scsi/dc395x.o .text refers to 0000000000002301 R_X86_64_32S      .init.data
      Error: ./drivers/scsi/dc395x.o .text refers to 0000000000002307 R_X86_64_32S      .init.data+0x0000000000000004
      Error: ./drivers/scsi/dc395x.o .text refers to 000000000000230f R_X86_64_32S      .init.data+0x0000000000000008
      Error: ./drivers/scsi/dc395x.o .text refers to 0000000000002317 R_X86_64_32S      .init.data+0x000000000000000c
      Error: ./drivers/scsi/dc395x.o .text refers to 000000000000231d R_X86_64_32S      .init.data
      Error: ./drivers/scsi/dc395x.o .text refers to 000000000000232d R_X86_64_PC32     .init.text+0xfffffffffffffffc
      Error: ./drivers/scsi/dc395x.o .text refers to 000000000000237a R_X86_64_PC32     .init.text+0x00000000000000b4
      Error: ./drivers/scsi/dc395x.o .text refers to 000000000000238c R_X86_64_PC32     .init.text+0x000000000000009c
      Error: ./drivers/scsi/dc395x.o .text refers to 00000000000023ac R_X86_64_PC32     .init.text+0x00000000000000b4
      Error: ./drivers/scsi/dc395x.o .text refers to 00000000000023d6 R_X86_64_PC32     .init.text+0x000000000000009c
      Error: ./drivers/scsi/dc395x.o .text refers to 00000000000023e6 R_X86_64_PC32     .init.text+0x000000000000009c
      Error: ./drivers/scsi/dc395x.o .text refers to 00000000000023fe R_X86_64_PC32     .init.text+0x000000000000009c
      Error: ./drivers/scsi/dc395x.o .text refers to 000000000000240b R_X86_64_PC32     .init.text+0x000000000000009c
      Error: ./drivers/scsi/dc395x.o .text refers to 0000000000002418 R_X86_64_PC32     .init.text+0x000000000000009c
      Error: ./drivers/scsi/dc395x.o .text refers to 000000000000242f R_X86_64_PC32     .init.text+0x000000000000009c
      Error: ./drivers/scsi/dc395x.o .text refers to 000000000000243f R_X86_64_PC32     .init.text+0x000000000000009c
      Error: ./drivers/scsi/dc395x.o .text refers to 0000000000002469 R_X86_64_PC32     .init.text+0x00000000000000b4
      Error: ./drivers/scsi/dc395x.o .text refers to 0000000000002476 R_X86_64_PC32     .init.text+0x000000000000009c
      Error: ./drivers/scsi/dc395x.o .text refers to 0000000000002489 R_X86_64_PC32     .init.data+0x0000000000000060
      Error: ./drivers/scsi/dc395x.o .text refers to 0000000000002494 R_X86_64_PC32     .init.text+0x0000000000000177
      Error: ./drivers/scsi/dc395x.o .text refers to 00000000000024a3 R_X86_64_32S      .init.data+0x0000000000000078
      Error: ./drivers/scsi/dc395x.o .text refers to 00000000000024ac R_X86_64_PC32     .init.text+0xfffffffffffffffc
      Signed-off-by: default avatarRandy Dunlap <rddunlap@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      9b323e0f
    • Randy Dunlap's avatar
      [PATCH] isdn: use __init for ICCVersion() · cfca2f9a
      Randy Dunlap authored
      ICCVersion() is only used by init code & can be marked __init;
      
      Error: ./drivers/isdn/hisax/icc.o .text refers to 000000000000014a R_X86_64_32S      .init.data
      Signed-off-by: default avatarRandy Dunlap <rddunlap@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      cfca2f9a
    • Randy Dunlap's avatar
      [PATCH] sound/oss/opl3as2: fix init section reference · 7cabf55b
      Randy Dunlap authored
      sound/oss/opl3sa2:  calls __init function during probe, which may
      be after init for PNP devices;
      
      Error: ./sound/oss/opl3sa2.o .text refers to 0000000000000204 R_X86_64_PC32     .init.text+0xfffffffffffffffc                                                   Error: ./sound/oss/opl3sa2.o .text refers to 0000000000000210 R_X86_64_PC32     .init.text+0xfffffffffffffffc                                                   Error: ./sound/oss/opl3sa2.o .text refers to 000000000000021c R_X86_64_PC32     .init.text+0xfffffffffffffffc
      Signed-off-by: default avatarRandy Dunlap <rddunlap@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      7cabf55b
    • Randy Dunlap's avatar
      [PATCH] sonicvibes: fix initdata references · baacac11
      Randy Dunlap authored
      sonicvibes:  _devinit function was referencing __initdata (2x),
      which should be __devinitdata;
      
      Error: ./sound/oss/sonicvibes.o .text refers to 0000000000003ca7 R_X86_64_32S      .init.data+0x0000000000000080                                                Error: ./sound/oss/sonicvibes.o .text refers to 00000000000043eb R_X86_64_32S      .init.data+0x0000000000000024                                                Error: ./sound/oss/sonicvibes.o .text refers to 00000000000043f2 R_X86_64_32S      .init.data+0x0000000000000020
      Signed-off-by: default avatarRandy Dunlap <rddunlap@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      baacac11
    • Randy Dunlap's avatar
      [PATCH] sound/oss/aedsp16: init/exit section cleanups: · 6fb185bc
      Randy Dunlap authored
      Exit-only function uninit_aedsp16() was marked __init instead of __exit;
      ae_config data was marked __initdata but used during exit;
      several cleanup functions were marked _init but used for init or exit
        cleanups;
      
      Error: ./sound/oss/aedsp16.o .exit.text refers to 0000000000000004 R_X86_64_PC32     .init.data+0x000000000000003b
      Error: ./sound/oss/aedsp16.o .exit.text refers to 000000000000000c R_X86_64_PC32     .init.text+0x00000000000001e4
      Error: ./sound/oss/aedsp16.o .exit.text refers to 0000000000000013 R_X86_64_PC32     .init.text+0x0000000000000034
      Error: ./sound/oss/aedsp16.o .exit.text refers to 0000000000000019 R_X86_64_PC32     .init.data+0x000000000000003f
      Error: ./sound/oss/aedsp16.o .exit.text refers to 0000000000000023 R_X86_64_PC32     .init.text+0x00000000000001b4
      Signed-off-by: default avatarRandy Dunlap <rddunlap@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      6fb185bc
    • Jens Axboe's avatar
      [PATCH] [PATCH] Fix bounced bio and dm panic · 7e15c47e
      Jens Axboe authored
      Make sure that a bio doesn't contain NULL pages in the front of its vec,
      if a device bounces a bio that doesn't start from 0.
      
      Problem noted by Mark Haverkamp.
      Signed-off-by: default avatarJens Axboe <axboe@suse.de>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      7e15c47e
    • Andrea Arcangeli's avatar
      [PATCH] Make the new merged pipe writes check for SIGPIPE · ca432005
      Andrea Arcangeli authored
      The new pipe buffer merging doesn't check for the "no readers" case, so
      with small writes that coalesce, we may not get a timely SIGPIPE/EPIPE
      notification to the writer.
      Signed-off-by: default avatarAndrea Arcangeli <andrea@suse.de>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      ca432005
    • Linus Torvalds's avatar
      Make pipe "poll()" take direction of pipe into account. · a4f7f170
      Linus Torvalds authored
      The pipe code has traditionally not cared about which end-point of the
      pipe you are polling, meaning that if you poll the write-only end of a
      pipe, it will still set the "this pipe is readable" bits if there is
      data to be read on the read side.
      
      That makes no sense, and together with the new bigger buffers breaks
      python-twisted.
      
      Based on debugging/patch by Andrea Arcangeli and testcase from
      Thomas Crhak
      a4f7f170
  4. 27 Feb, 2005 5 commits
  5. 26 Feb, 2005 1 commit