mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Greg KH <gregkh@suse.de>
To: Linus Torvalds <torvalds@osdl.org>, Andrew Morton <akpm@osdl.org>
Cc: linux-kernel@vger.kernel.org, Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Subject: [GIT PATCH] W1 patches for 2.6.17
Date: Thu, 22 Jun 2006 11:26:45 -0700	[thread overview]
Message-ID: <20060622182645.GB5668@kroah.com> (raw)

Here are some w1 patches that have been in the -mm tree for a very long
time.  They do a variety of cleanups and bugfixes.

Please pull from:
	git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/w1-2.6.git/
or from:
	master.kernel.org:/pub/scm/linux/kernel/git/gregkh/w1-2.6.git/
if it isn't synced up yet.

The full patch series will sent to the linux-kernel mailing list, if
anyone wants to see them.

thanks,

greg k-h

 Documentation/w1/masters/ds2490           |   18 +
 Documentation/w1/w1.generic               |   18 +
 Documentation/w1/w1.netlink               |   98 +++++++
 drivers/w1/Kconfig                        |   14 +
 drivers/w1/Makefile                       |    4 
 drivers/w1/masters/Kconfig                |   27 +-
 drivers/w1/masters/Makefile               |    7 
 drivers/w1/masters/ds2482.c               |   24 +-
 drivers/w1/masters/{dscore.c => ds2490.c} |  434 ++++++++++++++++++++---------
 drivers/w1/masters/ds_w1_bridge.c         |  174 ------------
 drivers/w1/masters/dscore.h               |  166 -----------
 drivers/w1/slaves/Kconfig                 |    2 
 drivers/w1/slaves/w1_ds2433.c             |   21 -
 drivers/w1/slaves/w1_smem.c               |    1 
 drivers/w1/slaves/w1_therm.c              |   13 -
 drivers/w1/w1.c                           |  263 ++++++++++++------
 drivers/w1/w1.h                           |   41 ++-
 drivers/w1/w1_family.c                    |   18 +
 drivers/w1/w1_family.h                    |    3 
 drivers/w1/w1_int.c                       |   16 -
 drivers/w1/w1_io.c                        |   31 +-
 drivers/w1/w1_io.h                        |    3 
 drivers/w1/w1_netlink.c                   |  219 ++++++++++++---
 drivers/w1/w1_netlink.h                   |   35 ++
 include/linux/connector.h                 |    5 
 include/linux/netlink.h                   |    2 
 26 files changed, 909 insertions(+), 748 deletions(-)
 create mode 100644 Documentation/w1/masters/ds2490
 create mode 100644 Documentation/w1/w1.netlink
 rename drivers/w1/masters/{dscore.c => ds2490.c} (67%)
 delete mode 100644 drivers/w1/masters/ds_w1_bridge.c
 delete mode 100644 drivers/w1/masters/dscore.h

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

Adrian Bunk:
      drivers/w1/w1.c: fix a compile error

Andrew Morton:
      w1 exports
      w1: warning fix

Evgeniy Polyakov:
      w1: Added default generic read/write operations.
      w1: Replace dscore and ds_w1_bridge with ds2490 driver.
      w1: Userspace communication protocol over connector.
      w1: Move w1-connector definitions into linux/include/connector.h
      w1: netlink: Mark netlink group 1 as unused.
      w1: Make w1 connector notifications depend on connector.
      w1: Use mutexes instead of semaphores.
      W1: cleanups
      W1: possible cleanups
      w1: clean up W1_CON dependency.

Jean-Luc Leger:
      W1: fix dependencies of W1_SLAVE_DS2433_CRC


             reply	other threads:[~2006-06-22 18:29 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-06-22 18:26 Greg KH [this message]
2006-06-22 18:27 ` [PATCH 1/14] [PATCH] w1: Added default generic read/write operations Greg KH
2006-06-22 18:27   ` [PATCH 2/14] [PATCH] w1: Replace dscore and ds_w1_bridge with ds2490 driver Greg KH
2006-06-22 18:27     ` [PATCH 3/14] [PATCH] w1: Userspace communication protocol over connector Greg KH
2006-06-22 18:27       ` [PATCH 4/14] [PATCH] w1: Move w1-connector definitions into linux/include/connector.h Greg KH
2006-06-22 18:27         ` [PATCH 5/14] [PATCH] w1: netlink: Mark netlink group 1 as unused Greg KH
2006-06-22 18:27           ` [PATCH 6/14] [PATCH] w1: Make w1 connector notifications depend on connector Greg KH
2006-06-22 18:27             ` [PATCH 7/14] [PATCH] w1: Use mutexes instead of semaphores Greg KH
2006-06-22 18:27               ` [PATCH 8/14] [PATCH] w1 exports Greg KH
2006-06-22 18:27                 ` [PATCH 9/14] [PATCH] W1: cleanups Greg KH
2006-06-22 18:27                   ` [PATCH 10/14] [PATCH] W1: possible cleanups Greg KH
2006-06-22 18:27                     ` [PATCH 11/14] [PATCH] W1: fix dependencies of W1_SLAVE_DS2433_CRC Greg KH
2006-06-22 18:27                       ` [PATCH 12/14] [PATCH] drivers/w1/w1.c: fix a compile error Greg KH
2006-06-22 18:27                         ` [PATCH 13/14] [PATCH] w1: clean up W1_CON dependency Greg KH
2006-06-22 18:27                           ` [PATCH 14/14] [PATCH] w1: warning fix Greg KH

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=20060622182645.GB5668@kroah.com \
    --to=gregkh@suse.de \
    --cc=akpm@osdl.org \
    --cc=johnpol@2ka.mipt.ru \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@osdl.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

all inboxes | Powered by JetHome®