* [BK PATCH] Some driver changes for 2.6.6 (msleep)
@ 2005-05-19 6:24 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2004-05-19 0:20 UTC (permalink / raw)
To: torvalds, akpm, jgarzik; +Cc: linux-usb-devel, linux-kernel, sensors
Hi,
Based on the previous USB changes creating a useful sleep function that
all drivers can use, Jeff Garzik suggested that I make it available to
all of the kernel. Doing this enabled me to remove a lot of local
driver functions that all did the same thing (and some of them did it
wrong, like the i2c code...) Anyway, here is the result of this
cleanup, it's been discussed on lkml as to the name and location of the
function.
Please pull from: bk://kernel.bkbits.net/gregkh/linux/usb-2.6
Patches will be posted to linux-usb-devel as a follow-up thread for
those who want to see them.
thanks,
greg k-h
drivers/block/carmel.c | 6 ------
drivers/i2c/busses/i2c-ali1535.c | 5 +++--
drivers/i2c/busses/i2c-ali1563.c | 5 +++--
drivers/i2c/busses/i2c-ali15x3.c | 5 +++--
drivers/i2c/busses/i2c-amd756.c | 7 ++++---
drivers/i2c/busses/i2c-amd8111.c | 2 +-
drivers/i2c/busses/i2c-i801.c | 7 ++++---
drivers/i2c/busses/i2c-piix4.c | 3 ++-
drivers/i2c/busses/i2c-sis5595.c | 3 ++-
drivers/i2c/busses/i2c-sis630.c | 3 ++-
drivers/i2c/busses/i2c-sis96x.c | 3 ++-
drivers/i2c/busses/i2c-viapro.c | 3 ++-
drivers/i2c/chips/w83l785ts.c | 3 ++-
drivers/input/gameport/ns558.c | 5 +++--
drivers/input/gameport/vortex.c | 3 ++-
drivers/input/joystick/adi.c | 6 +++---
drivers/input/joystick/analog.c | 6 +++---
drivers/input/joystick/gf2k.c | 4 ++--
drivers/macintosh/therm_pm72.c | 17 +++++------------
drivers/net/irda/stir4200.c | 5 +++--
drivers/scsi/libata-core.c | 17 -----------------
drivers/usb/core/hub.c | 14 +++++++-------
drivers/usb/core/usb.c | 11 -----------
drivers/usb/host/ehci-hcd.c | 6 +++---
drivers/usb/host/ehci-hub.c | 2 +-
drivers/usb/host/ehci.h | 6 ------
drivers/usb/host/ohci-hcd.c | 4 ++--
drivers/usb/host/ohci-hub.c | 4 ++--
drivers/usb/host/ohci-pci.c | 6 +++---
drivers/usb/host/ohci.h | 6 ------
drivers/usb/input/aiptek.c | 2 +-
drivers/usb/misc/usbtest.c | 2 +-
drivers/usb/net/usbnet.c | 2 +-
drivers/usb/serial/io_ti.c | 4 ++--
drivers/usb/storage/datafab.c | 2 +-
drivers/usb/storage/isd200.c | 4 ++--
drivers/usb/storage/jumpshot.c | 2 +-
drivers/usb/storage/shuttle_usbat.c | 14 +++++++-------
drivers/video/aty/radeon_base.c | 2 +-
drivers/video/aty/radeon_i2c.c | 16 ++++++++--------
drivers/video/aty/radeonfb.h | 9 ---------
include/linux/delay.h | 2 ++
include/linux/gameport.h | 6 ------
include/linux/i2c.h | 7 -------
include/linux/usb.h | 13 -------------
kernel/timer.c | 17 +++++++++++++++++
sound/oss/dmasound/dac3550a.c | 5 +++--
sound/oss/dmasound/dmasound.h | 6 ------
sound/oss/dmasound/dmasound_awacs.c | 30 +++++++++++++++---------------
sound/oss/trident.c | 2 +-
sound/pci/au88x0/au88x0_game.c | 3 ++-
51 files changed, 134 insertions(+), 193 deletions(-)
-----
Greg Kroah-Hartman:
o Some more misc wait_ms() conversions to use msleep()
o Input: remove wait_ms() in place of using msleep()
o I2C: change i2c_delay() to use msleep() instead
o USB: remove wait_ms() from usb.h as it's no longer needed
o USB: remove ehci and ohci's private sleep function and use msleep() instead
o USB: clean up usages of wait_ms() now that we have msleep()
o USB: remove usb_uninterruptible_sleep_ms() now that we have msleep()
o Remove libata's version of msleep()
o Delete block/carmel.c's version of msleep()
o Add msleep function to the kernel core to prevent duplication
^ permalink raw reply [flat|nested] 2+ messages in thread
* [BK PATCH] Some driver changes for 2.6.6 (msleep)
@ 2005-05-19 6:24 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2005-05-19 6:24 UTC (permalink / raw)
To: torvalds, akpm, jgarzik; +Cc: linux-usb-devel, linux-kernel, sensors
Hi,
Based on the previous USB changes creating a useful sleep function that
all drivers can use, Jeff Garzik suggested that I make it available to
all of the kernel. Doing this enabled me to remove a lot of local
driver functions that all did the same thing (and some of them did it
wrong, like the i2c code...) Anyway, here is the result of this
cleanup, it's been discussed on lkml as to the name and location of the
function.
Please pull from: bk://kernel.bkbits.net/gregkh/linux/usb-2.6
Patches will be posted to linux-usb-devel as a follow-up thread for
those who want to see them.
thanks,
greg k-h
drivers/block/carmel.c | 6 ------
drivers/i2c/busses/i2c-ali1535.c | 5 +++--
drivers/i2c/busses/i2c-ali1563.c | 5 +++--
drivers/i2c/busses/i2c-ali15x3.c | 5 +++--
drivers/i2c/busses/i2c-amd756.c | 7 ++++---
drivers/i2c/busses/i2c-amd8111.c | 2 +-
drivers/i2c/busses/i2c-i801.c | 7 ++++---
drivers/i2c/busses/i2c-piix4.c | 3 ++-
drivers/i2c/busses/i2c-sis5595.c | 3 ++-
drivers/i2c/busses/i2c-sis630.c | 3 ++-
drivers/i2c/busses/i2c-sis96x.c | 3 ++-
drivers/i2c/busses/i2c-viapro.c | 3 ++-
drivers/i2c/chips/w83l785ts.c | 3 ++-
drivers/input/gameport/ns558.c | 5 +++--
drivers/input/gameport/vortex.c | 3 ++-
drivers/input/joystick/adi.c | 6 +++---
drivers/input/joystick/analog.c | 6 +++---
drivers/input/joystick/gf2k.c | 4 ++--
drivers/macintosh/therm_pm72.c | 17 +++++------------
drivers/net/irda/stir4200.c | 5 +++--
drivers/scsi/libata-core.c | 17 -----------------
drivers/usb/core/hub.c | 14 +++++++-------
drivers/usb/core/usb.c | 11 -----------
drivers/usb/host/ehci-hcd.c | 6 +++---
drivers/usb/host/ehci-hub.c | 2 +-
drivers/usb/host/ehci.h | 6 ------
drivers/usb/host/ohci-hcd.c | 4 ++--
drivers/usb/host/ohci-hub.c | 4 ++--
drivers/usb/host/ohci-pci.c | 6 +++---
drivers/usb/host/ohci.h | 6 ------
drivers/usb/input/aiptek.c | 2 +-
drivers/usb/misc/usbtest.c | 2 +-
drivers/usb/net/usbnet.c | 2 +-
drivers/usb/serial/io_ti.c | 4 ++--
drivers/usb/storage/datafab.c | 2 +-
drivers/usb/storage/isd200.c | 4 ++--
drivers/usb/storage/jumpshot.c | 2 +-
drivers/usb/storage/shuttle_usbat.c | 14 +++++++-------
drivers/video/aty/radeon_base.c | 2 +-
drivers/video/aty/radeon_i2c.c | 16 ++++++++--------
drivers/video/aty/radeonfb.h | 9 ---------
include/linux/delay.h | 2 ++
include/linux/gameport.h | 6 ------
include/linux/i2c.h | 7 -------
include/linux/usb.h | 13 -------------
kernel/timer.c | 17 +++++++++++++++++
sound/oss/dmasound/dac3550a.c | 5 +++--
sound/oss/dmasound/dmasound.h | 6 ------
sound/oss/dmasound/dmasound_awacs.c | 30 +++++++++++++++---------------
sound/oss/trident.c | 2 +-
sound/pci/au88x0/au88x0_game.c | 3 ++-
51 files changed, 134 insertions(+), 193 deletions(-)
-----
Greg Kroah-Hartman:
o Some more misc wait_ms() conversions to use msleep()
o Input: remove wait_ms() in place of using msleep()
o I2C: change i2c_delay() to use msleep() instead
o USB: remove wait_ms() from usb.h as it's no longer needed
o USB: remove ehci and ohci's private sleep function and use msleep() instead
o USB: clean up usages of wait_ms() now that we have msleep()
o USB: remove usb_uninterruptible_sleep_ms() now that we have msleep()
o Remove libata's version of msleep()
o Delete block/carmel.c's version of msleep()
o Add msleep function to the kernel core to prevent duplication
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-05-19 6:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-05-19 0:20 [BK PATCH] Some driver changes for 2.6.6 (msleep) Greg KH
2005-05-19 6:24 ` Greg KH
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.