public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@suse.de>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	Andrew Morton <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org
Subject: [GIT PATCH] driver core patches against 2.6.26-rc4
Date: Thu, 21 Aug 2008 10:30:36 -0700	[thread overview]
Message-ID: <20080821173036.GB7974@suse.de> (raw)

Here are some fixes and updates for driver core related things against
your 2.6.26-git tree.

The biggest patches here are:
	- ja_JP documentation updates
	- new UIO driver (self contained)

The rest are all bugfixes and build fixes and one adds a new field to
struct device to make the linux-next tree merges a lot happier.

All of these, with the exception of one documentation update, have been
in the -next trees and the -mm releases for a while now.

Please pull from:
	master.kernel.org:/pub/scm/linux/kernel/git/gregkh/driver-core-2.6.git/

The patches will be sent as a follow-on to this message to lkml for people
to see.

thanks,

greg k-h

------------

 Documentation/ja_JP/HOWTO           |   67 +++++++++----
 Documentation/ja_JP/SubmitChecklist |  111 +++++++++++++++++++++
 block/genhd.c                       |   36 +++++---
 drivers/base/class.c                |   11 ++
 drivers/base/core.c                 |   31 ++++--
 drivers/base/driver.c               |    3 -
 drivers/base/power/main.c           |   19 +---
 drivers/base/power/power.h          |    9 ++-
 drivers/uio/Kconfig                 |   13 +++
 drivers/uio/Makefile                |    1 +
 drivers/uio/uio_pdrv.c              |    4 +-
 drivers/uio/uio_pdrv_genirq.c       |  188 +++++++++++++++++++++++++++++++++++
 include/linux/device.h              |    5 +-
 lib/kobject.c                       |    3 +-
 scripts/mod/file2alias.c            |   16 ++-
 15 files changed, 445 insertions(+), 72 deletions(-)
 create mode 100644 Documentation/ja_JP/SubmitChecklist
 create mode 100644 drivers/uio/uio_pdrv_genirq.c

---------------

Alan Stern (1):
      PM: don't skip device PM init when CONFIG_PM_SLEEP isn't set and CONFIG_PM is set

David Brownell (1):
      driver model: anti-oopsing medicine

Greg Kroah-Hartman (1):
      driver core: add init_name to struct device

Ingo Oeser (1):
      kobject: Replace ALL occurrences of '/' with '!' instead of only the first one.

Jean Delvare (1):
      dev_printk(): constify the `dev' argument

Joe Perches (1):
      drivers/base/driver.c: remove unused to_dev() macro

Kay Sievers (3):
      block: fix partial read() of /proc/{partitions,diskstats}
      block: drop references taken by class_find_device()
      pnp: fix "add acpi:* modalias entries"

Magnus Damm (1):
      UIO: generic irq handling for some uio platform devices

Rafael J. Wysocki (1):
      PM: Remove WARN_ON from device_pm_add

Takenori Nagano (1):
      Japanese translation of Documentation/SubmitChecklist

Tsugikazu Shibata (1):
      Documentation: HOWTO-ja_JP-sync patch

Uwe Kleine-König (2):
      UIO: uio_pdrv: fix memory leak
      UIO: uio_pdrv: fix license specification


             reply	other threads:[~2008-08-21 17:34 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-08-21 17:30 Greg KH [this message]
2008-08-21 17:32 ` [PATCH 01/15] kobject: Replace ALL occurrences of '/' with '!' instead of only the first one Greg Kroah-Hartman
2008-08-22 12:41   ` Ville Syrjälä
2008-08-23  2:14     ` Greg KH
2008-08-21 17:32 ` [PATCH 02/15] Japanese translation of Documentation/SubmitChecklist Greg Kroah-Hartman
2008-08-21 17:32 ` [PATCH 03/15] Documentation: HOWTO-ja_JP-sync patch Greg Kroah-Hartman
2008-08-21 17:32 ` [PATCH 04/15] drivers/base/driver.c: remove unused to_dev() macro Greg Kroah-Hartman
2008-08-21 17:32 ` [PATCH 05/15] dev_printk(): constify the `dev' argument Greg Kroah-Hartman
2008-08-21 17:32 ` [PATCH 06/15] driver model: anti-oopsing medicine Greg Kroah-Hartman
2008-08-21 18:24   ` David Brownell
2008-08-21 20:04     ` Greg KH
2008-08-21 17:32 ` [PATCH 07/15] PM: don't skip device PM init when CONFIG_PM_SLEEP isn't set and CONFIG_PM is set Greg Kroah-Hartman
2008-08-21 17:32 ` [PATCH 08/15] driver core: add init_name to struct device Greg Kroah-Hartman
2008-08-21 17:32 ` [PATCH 09/15] PM: Remove WARN_ON from device_pm_add Greg Kroah-Hartman
2008-08-21 17:32 ` [PATCH 10/15] block: fix partial read() of /proc/{partitions,diskstats} Greg Kroah-Hartman
2008-08-21 17:32 ` [PATCH 11/15] block: drop references taken by class_find_device() Greg Kroah-Hartman
2008-08-21 17:33 ` [PATCH 12/15] UIO: uio_pdrv: fix memory leak Greg Kroah-Hartman
2008-08-21 17:33 ` [PATCH 13/15] UIO: uio_pdrv: fix license specification Greg Kroah-Hartman
2008-08-21 17:33 ` [PATCH 14/15] UIO: generic irq handling for some uio platform devices Greg Kroah-Hartman
2008-08-21 17:33 ` [PATCH 15/15] pnp: fix "add acpi:* modalias entries" Greg Kroah-Hartman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080821173036.GB7974@suse.de \
    --to=gregkh@suse.de \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox