tpmdd-devel.lists.sourceforge.net archive mirror
 help / color / mirror / Atom feed
From: Jarkko Sakkinen <jarkko.sakkinen-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
To: Christophe Ricard
	<christophe.ricard-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: jean-luc.blanc-qxv4g6HH51o@public.gmane.org,
	ashley-fm2HMyfA2y6tG0bUXCXiUA@public.gmane.org,
	tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org,
	christophe-h.ricard-qxv4g6HH51o@public.gmane.org,
	benoit.houyere-qxv4g6HH51o@public.gmane.org
Subject: Re: [PATCH 02/12] tpm/st33zp24/spi: Use functions name with st33zp24_spi_ prefix
Date: Thu, 11 Feb 2016 15:50:28 +0200	[thread overview]
Message-ID: <20160211135028.GB11260@intel.com> (raw)
In-Reply-To: <1455010021-21927-3-git-send-email-christophe-h.ricard-qxv4g6HH51o@public.gmane.org>

On Tue, Feb 09, 2016 at 10:26:51AM +0100, Christophe Ricard wrote:
> Make sure every function name use st33zp24_spi_ prefix.
> 
> Signed-off-by: Christophe Ricard <christophe-h.ricard-qxv4g6HH51o@public.gmane.org>

Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>

/Jarkko

> ---
>  drivers/char/tpm/st33zp24/spi.c | 45 +++++++++++++++++++++--------------------
>  1 file changed, 23 insertions(+), 22 deletions(-)
> 
> diff --git a/drivers/char/tpm/st33zp24/spi.c b/drivers/char/tpm/st33zp24/spi.c
> index 74c5fcc..f42c443 100644
> --- a/drivers/char/tpm/st33zp24/spi.c
> +++ b/drivers/char/tpm/st33zp24/spi.c
> @@ -145,7 +145,7 @@ static int st33zp24_spi_send(void *phy_id, u8 tpm_register, u8 *tpm_data,
>  } /* st33zp24_spi_send() */
>  
>  /*
> - * read8_recv
> + * st33zp24_spi_read8_recv
>   * Recv byte from the TIS register according to the ST33ZP24 SPI protocol.
>   * @param: phy_id, the phy description
>   * @param: tpm_register, the tpm tis register where the data should be read
> @@ -153,7 +153,8 @@ static int st33zp24_spi_send(void *phy_id, u8 tpm_register, u8 *tpm_data,
>   * @param: tpm_size, tpm TPM response size to read.
>   * @return: should be zero if success else a negative error code.
>   */
> -static int read8_reg(void *phy_id, u8 tpm_register, u8 *tpm_data, int tpm_size)
> +static int st33zp24_spi_read8_reg(void *phy_id, u8 tpm_register, u8 *tpm_data,
> +				  int tpm_size)
>  {
>  	u8 data = 0;
>  	int total_length = 0, ret;
> @@ -185,7 +186,7 @@ static int read8_reg(void *phy_id, u8 tpm_register, u8 *tpm_data, int tpm_size)
>  	}
>  
>  	return ret;
> -} /* read8_reg() */
> +} /* st33zp24_spi_read8_reg() */
>  
>  /*
>   * st33zp24_spi_recv
> @@ -201,13 +202,13 @@ static int st33zp24_spi_recv(void *phy_id, u8 tpm_register, u8 *tpm_data,
>  {
>  	int ret;
>  
> -	ret = read8_reg(phy_id, tpm_register, tpm_data, tpm_size);
> +	ret = st33zp24_spi_read8_reg(phy_id, tpm_register, tpm_data, tpm_size);
>  	if (!st33zp24_status_to_errno(ret))
>  		return tpm_size;
>  	return ret;
>  } /* st33zp24_spi_recv() */
>  
> -static int evaluate_latency(void *phy_id)
> +static int st33zp24_spi_evaluate_latency(void *phy_id)
>  {
>  	struct st33zp24_spi_phy *phy = phy_id;
>  	int latency = 1, status = 0;
> @@ -215,7 +216,8 @@ static int evaluate_latency(void *phy_id)
>  
>  	while (!status && latency < MAX_SPI_LATENCY) {
>  		phy->latency = latency;
> -		status = read8_reg(phy_id, TPM_INTF_CAPABILITY, &data, 1);
> +		status = st33zp24_spi_read8_reg(phy_id, TPM_INTF_CAPABILITY,
> +						&data, 1);
>  		latency++;
>  	}
>  	return latency - 1;
> @@ -227,7 +229,7 @@ static const struct st33zp24_phy_ops spi_phy_ops = {
>  };
>  
>  #ifdef CONFIG_OF
> -static int tpm_stm_spi_of_request_resources(struct st33zp24_spi_phy *phy)
> +static int st33zp24_spi_of_request_resources(struct st33zp24_spi_phy *phy)
>  {
>  	struct device_node *pp;
>  	struct spi_device *dev = phy->spi_device;
> @@ -265,14 +267,14 @@ static int tpm_stm_spi_of_request_resources(struct st33zp24_spi_phy *phy)
>  	return 0;
>  }
>  #else
> -static int tpm_stm_spi_of_request_resources(struct st33zp24_spi_phy *phy)
> +static int st33zp24_spi_of_request_resources(struct st33zp24_spi_phy *phy)
>  {
>  	return -ENODEV;
>  }
>  #endif
>  
> -static int tpm_stm_spi_request_resources(struct spi_device *dev,
> -					 struct st33zp24_spi_phy *phy)
> +static int st33zp24_spi_request_resources(struct spi_device *dev,
> +					  struct st33zp24_spi_phy *phy)
>  {
>  	struct st33zp24_platform_data *pdata;
>  	int ret;
> @@ -301,13 +303,12 @@ static int tpm_stm_spi_request_resources(struct spi_device *dev,
>  }
>  
>  /*
> - * tpm_st33_spi_probe initialize the TPM device
> + * st33zp24_spi_probe initialize the TPM device
>   * @param: dev, the spi_device drescription (TPM SPI description).
>   * @return: 0 in case of success.
>   *	 or a negative value describing the error.
>   */
> -static int
> -tpm_st33_spi_probe(struct spi_device *dev)
> +static int st33zp24_spi_probe(struct spi_device *dev)
>  {
>  	int ret;
>  	struct st33zp24_platform_data *pdata;
> @@ -328,11 +329,11 @@ tpm_st33_spi_probe(struct spi_device *dev)
>  	phy->spi_device = dev;
>  	pdata = dev->dev.platform_data;
>  	if (!pdata && dev->dev.of_node) {
> -		ret = tpm_stm_spi_of_request_resources(phy);
> +		ret = st33zp24_spi_of_request_resources(phy);
>  		if (ret)
>  			return ret;
>  	} else if (pdata) {
> -		ret = tpm_stm_spi_request_resources(dev, phy);
> +		ret = st33zp24_spi_request_resources(dev, phy);
>  		if (ret)
>  			return ret;
>  	}
> @@ -340,7 +341,7 @@ tpm_st33_spi_probe(struct spi_device *dev)
>  	phy->spi_xfer.tx_buf = phy->tx_buf;
>  	phy->spi_xfer.rx_buf = phy->rx_buf;
>  
> -	phy->latency = evaluate_latency(phy);
> +	phy->latency = st33zp24_spi_evaluate_latency(phy);
>  	if (phy->latency <= 0)
>  		return -ENODEV;
>  
> @@ -349,11 +350,11 @@ tpm_st33_spi_probe(struct spi_device *dev)
>  }
>  
>  /*
> - * tpm_st33_spi_remove remove the TPM device
> + * st33zp24_spi_remove remove the TPM device
>   * @param: client, the spi_device drescription (TPM SPI description).
>   * @return: 0 in case of success.
>   */
> -static int tpm_st33_spi_remove(struct spi_device *dev)
> +static int st33zp24_spi_remove(struct spi_device *dev)
>  {
>  	struct tpm_chip *chip = spi_get_drvdata(dev);
>  
> @@ -377,18 +378,18 @@ MODULE_DEVICE_TABLE(of, of_st33zp24_spi_match);
>  static SIMPLE_DEV_PM_OPS(st33zp24_spi_ops, st33zp24_pm_suspend,
>  			 st33zp24_pm_resume);
>  
> -static struct spi_driver tpm_st33_spi_driver = {
> +static struct spi_driver st33zp24_spi_driver = {
>  	.driver = {
>  		.name = TPM_ST33_SPI,
>  		.pm = &st33zp24_spi_ops,
>  		.of_match_table = of_match_ptr(of_st33zp24_spi_match),
>  	},
> -	.probe = tpm_st33_spi_probe,
> -	.remove = tpm_st33_spi_remove,
> +	.probe = st33zp24_spi_probe,
> +	.remove = st33zp24_spi_remove,
>  	.id_table = st33zp24_spi_id,
>  };
>  
> -module_spi_driver(tpm_st33_spi_driver);
> +module_spi_driver(st33zp24_spi_driver);
>  
>  MODULE_AUTHOR("TPM support (TPMsupport-nkJGhpqTU55BDgjK7y7TUQ@public.gmane.org)");
>  MODULE_DESCRIPTION("STM TPM 1.2 SPI ST33 Driver");
> -- 
> 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

  parent reply	other threads:[~2016-02-11 13:50 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]
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

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=20160211135028.GB11260@intel.com \
    --to=jarkko.sakkinen-vuqaysv1563yd54fqh9/ca@public.gmane.org \
    --cc=ashley-fm2HMyfA2y6tG0bUXCXiUA@public.gmane.org \
    --cc=benoit.houyere-qxv4g6HH51o@public.gmane.org \
    --cc=christophe-h.ricard-qxv4g6HH51o@public.gmane.org \
    --cc=christophe.ricard-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=jean-luc.blanc-qxv4g6HH51o@public.gmane.org \
    --cc=tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.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;
as well as URLs for NNTP newsgroup(s).