All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] tpm/st33zp24: Few code style and sanity fixes + acpi device probing support
@ 2016-02-09  9:26 Christophe Ricard
       [not found] ` <1455010021-21927-1-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
  0 siblings, 1 reply; 31+ messages in thread
From: Christophe Ricard @ 2016-02-09  9:26 UTC (permalink / raw)
  To: jarkko.sakkinen-VuQAYsv1563Yd54FQh9/CA, peterhuewe-Mmb7MZpHnFY
  Cc: jean-luc.blanc-qxv4g6HH51o, ashley-fm2HMyfA2y6tG0bUXCXiUA,
	christophe.ricard-Re5JQEeQqe8AvxtiuMwx3w,
	tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	christophe-h.ricard-qxv4g6HH51o, benoit.houyere-qxv4g6HH51o

Hi Peter, Jarko,

Please find in the following serie:
- a set of code style or sanity cleanup
- acpi device probing support for i2c and spi phys.

This serie applies on top of jarkko tree:
b64f343cb02b2a2a009b3805a8331425dd4a8611 tpm: fix rollback/cleanup before tpm_chip_register()

Best Regards
Christophe 

Christophe Ricard (12):
  tpm/st33zp24/spi: Remove nbr_dummy_bytes variable usage
  tpm/st33zp24/spi: Use functions name with st33zp24_spi_ prefix
  tpm/st33zp24/spi: Remove useless use of memcpy.
  tpm/st33zp24/spi: Remove field spi_xfer from st33zp24_spi_phy
    structure
  tpm/st33zp24: Remove unneeded CONFIG_OF switches
  tpm/st33zp24: Auto-select core module
  tpm/st33zp24/spi: Improve st33zp24_spi_evaluate_latency
  tpm/st33zp24: Extend Copyright headers
  tpm/st33zp24: Add support for acpi probing for i2c device.
  tpm: st33zp24: Add support for acpi probing for spi device.
  tpm/st33zp24/i2c: Change xxx_request_resources header
  tpm/st33zp24/spi: Change xxx_request_resources header

 drivers/char/tpm/st33zp24/Kconfig      |  11 +-
 drivers/char/tpm/st33zp24/i2c.c        |  76 ++++++++++---
 drivers/char/tpm/st33zp24/spi.c        | 190 ++++++++++++++++++++-------------
 drivers/char/tpm/st33zp24/st33zp24.c   |   2 +-
 drivers/char/tpm/st33zp24/st33zp24.h   |   2 +-
 include/linux/platform_data/st33zp24.h |   2 +-
 6 files changed, 182 insertions(+), 101 deletions(-)

-- 
2.5.0


------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140

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

end of thread, other threads:[~2016-02-19 15:03 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-09  9:26 [PATCH 00/12] tpm/st33zp24: Few code style and sanity fixes + acpi device probing support Christophe Ricard
     [not found] ` <1455010021-21927-1-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-09  9:26   ` [PATCH 01/12] tpm/st33zp24/spi: Remove nbr_dummy_bytes variable usage Christophe Ricard
     [not found]     ` <1455010021-21927-2-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-11 13:48       ` Jarkko Sakkinen
2016-02-09  9:26   ` [PATCH 02/12] tpm/st33zp24/spi: Use functions name with st33zp24_spi_ prefix Christophe Ricard
     [not found]     ` <1455010021-21927-3-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-11 13:50       ` Jarkko Sakkinen
2016-02-09  9:26   ` [PATCH 03/12] tpm/st33zp24/spi: Remove useless use of memcpy Christophe Ricard
     [not found]     ` <1455010021-21927-4-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-11 13:54       ` Jarkko Sakkinen
2016-02-09  9:26   ` [PATCH 04/12] tpm/st33zp24/spi: Remove field spi_xfer from st33zp24_spi_phy structure Christophe Ricard
     [not found]     ` <1455010021-21927-5-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-11 14:06       ` Jarkko Sakkinen
2016-02-09  9:26   ` [PATCH 05/12] tpm/st33zp24: Remove unneeded CONFIG_OF switches Christophe Ricard
     [not found]     ` <1455010021-21927-6-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-11 14:10       ` Jarkko Sakkinen
2016-02-09  9:26   ` [PATCH 06/12] tpm/st33zp24: Auto-select core module Christophe Ricard
     [not found]     ` <1455010021-21927-7-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-11 14:18       ` Jarkko Sakkinen
2016-02-09  9:26   ` [PATCH 07/12] tpm/st33zp24/spi: Improve st33zp24_spi_evaluate_latency Christophe Ricard
     [not found]     ` <1455010021-21927-8-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-11 14:22       ` Jarkko Sakkinen
2016-02-09  9:26   ` [PATCH 08/12] tpm/st33zp24: Extend Copyright headers Christophe Ricard
     [not found]     ` <1455010021-21927-9-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-11 14:22       ` Jarkko Sakkinen
2016-02-09  9:26   ` [PATCH 09/12] tpm/st33zp24: Add support for acpi probing for i2c device Christophe Ricard
     [not found]     ` <1455010021-21927-10-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-11 14:28       ` Jarkko Sakkinen
2016-02-09  9:26   ` [PATCH 10/12] tpm: st33zp24: Add support for acpi probing for spi device Christophe Ricard
     [not found]     ` <1455010021-21927-11-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-11 14:29       ` Jarkko Sakkinen
2016-02-09  9:27   ` [PATCH 11/12] tpm/st33zp24/i2c: Change xxx_request_resources header Christophe Ricard
     [not found]     ` <1455010021-21927-12-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-11 14:36       ` Jarkko Sakkinen
2016-02-09  9:27   ` [PATCH 12/12] tpm/st33zp24/spi: " Christophe Ricard
     [not found]     ` <1455010021-21927-13-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>
2016-02-11 14:44       ` Jarkko Sakkinen
2016-02-14  9:11   ` [PATCH 00/12] tpm/st33zp24: Few code style and sanity fixes + acpi device probing support Jarkko Sakkinen
     [not found]     ` <20160214091106.GA18761-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2016-02-14  9:41       ` Christophe Ricard
2016-02-18  7:12       ` Christophe Ricard
     [not found]         ` <56C56EED.1070801-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-02-18 14:46           ` Jarkko Sakkinen
     [not found]             ` <20160218144651.GA8472-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2016-02-18 21:03               ` Christophe Ricard
     [not found]                 ` <56C631A7.5040604-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-02-19 15:03                   ` Jarkko Sakkinen

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.