All of lore.kernel.org
 help / color / mirror / Atom feed
* [lm-sensors] [PATCH 00/16] hwmon and i2c updates
@ 2005-10-07 23:01 Jean Delvare
  2005-10-26 20:56 ` Jean Delvare
  0 siblings, 1 reply; 2+ messages in thread
From: Jean Delvare @ 2005-10-07 23:01 UTC (permalink / raw)
  To: lm-sensors

Hi Greg,

Here comes a 16-piece hwmon and i2c update patchset. These are fixes I
gathered in the last few weeks or wrote myself. Details are given in
the header of each patch. None of these are meant for Linux 2.6.14. I'd
like you to have them included in the next -mm releases so that they get
enough testing and can be merged in Linux 2.6.15.

Here's the summary:

Hideki Iwamoto:
 o Documentation fixes

Jean Delvare:
 o Add missing i2c-ixp2000/4xx adapter name
 o Cleanup i2c-dev ioctl debug message
 o Drop useless CVS revision IDs
 o Cleanup i2c-i801 ifdefs
 o Fix misplaced i2c.h comment
 o Drop out-of-date, colliding ioctl definitions
 o Drop legacy ISA address support from it87
 o Drop useless w83627hf initialization step
 o Drop unused per-i2c-algorithm adapter max
 o Drop I2C_SMBUS_I2C_BLOCK_MAX
 o Rename i2c-parport variable to avoid confusion
 o Drop meaningless use of I2C_DF_NOTIFY in i2c_client structures

Petr Vandrovec:
 o Fix w83627ehf/hf vs PNPACPI conflict (bug #4014)

Stig Telfer:
 o Fix i2c-elektor on Alpha
 o Big i2c-elektor cleanup

Statistics:

 Documentation/hwmon/it87          |    8 +-
 Documentation/i2c/writing-clients |   11 +--
 drivers/hwmon/it87.c              |   51 +++-----------
 drivers/hwmon/w83627ehf.c         |   13 ++-
 drivers/hwmon/w83627hf.c          |   28 ++++----
 drivers/i2c/busses/i2c-elektor.c  |  138 +++++++++++++++++++++++--------------
 drivers/i2c/busses/i2c-i801.c     |   20 -----
 drivers/i2c/busses/i2c-ixp2000.c  |    4 +
 drivers/i2c/busses/i2c-ixp4xx.c   |    4 +
 drivers/i2c/busses/i2c-parport.c  |    6 +-
 drivers/i2c/chips/ds1374.c        |    1 -
 drivers/i2c/chips/eeprom.c        |    4 
 drivers/i2c/chips/m41t00.c        |    1 -
 drivers/i2c/chips/rtc8564.c       |    2 
 drivers/i2c/i2c-core.c            |    8 +-
 drivers/i2c/i2c-dev.c             |    4 
 include/linux/i2c-algo-bit.h      |    4 -
 include/linux/i2c-algo-pca.h      |    2 -
 include/linux/i2c-algo-pcf.h      |    4 -
 include/linux/i2c-dev.h           |    2 -
 include/linux/i2c.h               |   10 ---
 21 files changed, 146 insertions(+), 179 deletions(-)

Thanks,
-- 
Jean Delvare

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [lm-sensors] [PATCH 00/16] hwmon and i2c updates
  2005-10-07 23:01 [lm-sensors] [PATCH 00/16] hwmon and i2c updates Jean Delvare
@ 2005-10-26 20:56 ` Jean Delvare
  0 siblings, 0 replies; 2+ messages in thread
From: Jean Delvare @ 2005-10-26 20:56 UTC (permalink / raw)
  To: lm-sensors

Hi Greg,

Here comes a 16-piece hwmon and i2c update patchset. These are fixes I
gathered in the last few weeks or wrote myself. Details are given in
the header of each patch. None of these are meant for Linux 2.6.14. I'd
like you to have them included in the next -mm releases so that they get
some testing.

The most important part here is certainly the complete rewrite of the
SMBus PEC implementation. It was discussed briefly on the lm-sensors
list, but I don't think anyone actually took the time to review my
code, and I did not get any feedback (neither negative nor positive)
about the idea of the rewrite itself either. Let's hope that having
this in -mm for some time will let it get proper testing (PEC is almost
unused to date, but at least we want to make sure that the change
doesn't affect non-PEC transactions). If anyone is unhappy about the
change, don't wait any longer, let me know ASAP.

Here's the summary:

Ben Dooks:
 o Static function fixes in i2c drivers
 o Static function fixes in hwmon drivers

Jean Delvare:
 o i2c ID redefinition cleanups
 o Drop unused parport i2c IDs
 o i2c-i810 documentation update
 o SMBus PEC support rewrite
 o i2c-i801 PEC code cleanups
 o Add PEC support to the lm90 driver
 o lm90 documentation update
 o smsc47m1 documentation update

Statistics:

 Documentation/hwmon/lm90                |   47 +++++++-
 Documentation/hwmon/smsc47m1            |    7 +
 Documentation/hwmon/sysfs-interface     |    3 +
 Documentation/i2c/busses/i2c-i810       |    1 +
 drivers/hwmon/adm1026.c                 |   18 +-
 drivers/hwmon/ds1621.c                  |    4 
 drivers/hwmon/fscpos.c                  |    2 
 drivers/hwmon/it87.c                    |    2 
 drivers/hwmon/lm78.c                    |    2 
 drivers/hwmon/lm80.c                    |    2 
 drivers/hwmon/lm85.c                    |   12 +-
 drivers/hwmon/lm90.c                    |  178 ++++++++++++++++++++-----------
 drivers/hwmon/smsc47m1.c                |    7 +
 drivers/i2c/busses/Kconfig              |    3 +
 drivers/i2c/busses/i2c-amd8111.c        |    7 -
 drivers/i2c/busses/i2c-i801.c           |   38 +++----
 drivers/i2c/busses/i2c-i810.c           |    1 +
 drivers/i2c/busses/i2c-nforce2.c        |    7 -
 drivers/i2c/busses/i2c-prosavage.c      |    5 -
 drivers/i2c/chips/ds1374.c              |    3 +
 drivers/i2c/chips/eeprom.c              |    2 
 drivers/i2c/chips/pcf8574.c             |    2 
 drivers/i2c/chips/pcf8591.c             |    2 
 drivers/i2c/i2c-core.c                  |  162 ++++++++--------------------
 drivers/media/video/bt832.c             |    1 -
 drivers/media/video/msp3400.c           |    1 -
 drivers/media/video/saa6588.c           |    2 -
 drivers/media/video/saa7134/saa6752hs.c |    2 -
 drivers/media/video/saa7134/saa7134.h   |    1 -
 drivers/media/video/tda7432.c           |    1 -
 drivers/media/video/tda9875.c           |    1 -
 drivers/media/video/tda9887.c           |    1 -
 drivers/media/video/tvaudio.c           |    3 -
 drivers/media/video/tveeprom.c          |    4 -
 include/linux/i2c-id.h                  |    6 
 include/linux/i2c.h                     |   24 ----
 include/media/id.h                      |   35 ------
 include/media/ovcamchip.h               |   14 --
 38 files changed, 269 insertions(+), 344 deletions(-)

Thanks,
-- 
Jean Delvare

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-10-26 20:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-07 23:01 [lm-sensors] [PATCH 00/16] hwmon and i2c updates Jean Delvare
2005-10-26 20:56 ` Jean Delvare

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.