public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] Driver Core patches for 2.6.9-rc1
@ 2004-08-26 18:15 Margit Schubert-While
  0 siblings, 0 replies; 21+ messages in thread
From: Margit Schubert-While @ 2004-08-26 18:15 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 91 bytes --]

Jean scribeth :
> Except lm85, but this should be fixed

Indeed, patch attached.

Margit



[-- Attachment #2: lm85class.patch --]
[-- Type: text/x-diff, Size: 454 bytes --]

diff -Naur linux-2.6.9rc1/drivers/i2c/chips/lm85.c linux-2.6.9-rc1msw/drivers/i2c/chips/lm85.c
--- linux-2.6.9rc1/drivers/i2c/chips/lm85.c	2004-08-26 19:42:54.000000000 +0200
+++ linux-2.6.9-rc1msw/drivers/i2c/chips/lm85.c	2004-08-26 19:45:23.000000000 +0200
@@ -707,6 +707,8 @@
 
 int lm85_attach_adapter(struct i2c_adapter *adapter)
 {
+	if (!(adapter->class & I2C_CLASS_HWMON))
+		return 0;
 	return i2c_detect(adapter, &addr_data, lm85_detect);
 }
 

^ permalink raw reply	[flat|nested] 21+ messages in thread
* [BK PATCH] Driver Core patches for 2.6.9-rc1
@ 2004-08-25 22:35 Greg KH
  2004-08-25 22:36 ` [PATCH] " Greg KH
  0 siblings, 1 reply; 21+ messages in thread
From: Greg KH @ 2004-08-25 22:35 UTC (permalink / raw)
  To: torvalds, akpm; +Cc: linux-kernel, sensors

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=unknown-8bit, Size: 2929 bytes --]

Hi,

Here are some driver core patches for 2.6.9-rc1.  They fix a few minor
error paths, and shrink down the kref code enough to be able to use it
in a kobject.  All of the driver patches have been in the patch few -mm
releases.

I've also put 4 minor I2C patches, and two PCI patches as they need to
make it into the mainline tree soon.

Please pull from:
	bk://kernel.bkbits.net/gregkh/linux/driver-2.6

thanks,

greg k-h

p.s. I'll send these as patches in response to this email to lkml for
those who want to see them.

 CREDITS                            |    6 +
 Documentation/driver-model/bus.txt |   78 ++++++----------------
 Documentation/i2c/sysfs-interface  |    2 
 MAINTAINERS                        |   30 ++++++++
 drivers/base/class.c               |    9 +-
 drivers/char/tty_io.c              |   44 +++++++++---
 drivers/i2c/busses/i2c-keywest.c   |    2 
 drivers/i2c/chips/asb100.c         |    4 -
 drivers/i2c/chips/it87.c           |    4 -
 drivers/i2c/chips/lm78.c           |    4 -
 drivers/i2c/chips/lm85.c           |    4 -
 drivers/i2c/chips/w83627hf.c       |    4 -
 drivers/i2c/chips/w83781d.c        |    4 -
 drivers/pci/pci-driver.c           |    7 -
 drivers/pci/probe.c                |    6 +
 drivers/pci/remove.c               |   20 +++--
 drivers/scsi/sd.c                  |  117 +++++++++++++++++++--------------
 drivers/scsi/sr.c                  |   14 +--
 drivers/usb/core/config.c          |    7 +
 drivers/usb/core/message.c         |    4 -
 drivers/usb/core/urb.c             |    8 +-
 drivers/usb/core/usb.h             |    1 
 drivers/usb/host/ehci-mem.c        |    4 -
 drivers/usb/serial/usb-serial.c    |  130 +++++++++++++++++--------------------
 include/linux/device.h             |    1 
 include/linux/kobject.h            |    5 +
 include/linux/kref.h               |    9 --
 include/linux/pci.h                |    2 
 lib/Makefile                       |    7 -
 lib/kobject.c                      |   57 ++++++++++------
 lib/kref.c                         |   29 +++-----
 31 files changed, 346 insertions(+), 277 deletions(-)
-----


<thomas.koeller:baslerweb.com>:
  o Driver Core: fix minor class reference counting issue on the error path

Dmitry Torokhov:
  o kobject: fix kobject_set_name comment

François Romieu:
  o pci-driver: function documentation fix

Greg Kroah-Hartman:
  o kobject: convert struct kobject use kref
  o KREF: make kref_get() return void as it makes sense to do so
  o KREF: fix up the current kref users for the changed api
  o KREF: shrink the size of struct kref down to just a single atomic_t

Jean Delvare:
  o I2C: update kernel credits/maintainers
  o I2C: rename in0_ref to cpu0_vid
  o I2C: keywest class

John Rose:
  o PCI Hotplug: create pci_remove_bus()

Jonathan Corbet:
  o Remove struct bus_type->add()

Olaf Hering:
  o export legacy pty info via sysfs

Robert Love:
  o KOBJECT: add kobject_get_path


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

end of thread, other threads:[~2004-09-08 20:21 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <200408261957.58105.margitsw@t-online.de>
     [not found] ` <5.1.0.14.2.20040908220127.02a9daa8@pop.t-online.de>
2004-09-08 20:21   ` [PATCH] Driver Core patches for 2.6.9-rc1 Greg KH
2004-08-26 18:15 Margit Schubert-While
  -- strict thread matches above, loose matches on Subject: below --
2004-08-25 22:35 [BK PATCH] " Greg KH
2004-08-25 22:36 ` [PATCH] " Greg KH
2004-08-25 22:36   ` Greg KH
2004-08-25 22:36     ` Greg KH
2004-08-25 22:36       ` Greg KH
2004-08-25 22:36         ` Greg KH
2004-08-25 22:36           ` Greg KH
2004-08-25 22:36             ` Greg KH
2004-08-25 22:36               ` Greg KH
2004-08-25 22:36                 ` Greg KH
2004-08-25 22:36                   ` Greg KH
2004-08-25 22:36                     ` Greg KH
2004-08-25 22:36                       ` Greg KH
2004-08-25 22:36                         ` Greg KH
2004-08-25 22:36                           ` Greg KH
2004-08-26  2:04                     ` Benjamin Herrenschmidt
2004-08-26  4:10                       ` Greg KH
2004-08-26 12:26                         ` Jean Delvare
2004-08-26 23:33                           ` Benjamin Herrenschmidt
2004-08-27 10:16                             ` Jean Delvare

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox