public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Mike Rapoport <mike.rapoport@gmail.com>
To: itai.katz@freescale.com
Cc: gregkh@linuxfoundation.org, arnd@arndb.de,
	devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org,
	stuart.yoder@freescale.com, bhupesh.sharma@freescale.com,
	german.rivera@freescale.com, agraf@suse.de,
	bhamciu1@freescale.com, nir.erez@freescale.com,
	scottwood@freescale.com, lijun.pan@freescale.com,
	R89243@freescale.com, dan.carpenter@oracle.com,
	richard.schmitt@freescale.com
Subject: Re: [PATCH 2/5] staging: fsl-mc: abstract test for whether a dprc is a root dprc
Date: Tue, 6 Oct 2015 09:47:50 +0100	[thread overview]
Message-ID: <20151006084750.GA25573@zed.theccd.local> (raw)
In-Reply-To: <1443942594-7189-3-git-send-email-itai.katz@freescale.com>

On Sun, Oct 04, 2015 at 10:09:51AM +0300, itai.katz@freescale.com wrote:
> From: Itai Katz <itai.katz@freescale.com>
> 
> Instead of relying on assumptions about fields in data
> structures, abstract the test for whether a dprc is a root
> dprc into a function.
> 
> Signed-off-by: Itai Katz <itai.katz@freescale.com>
> ---
>  drivers/staging/fsl-mc/bus/mc-bus.c |   16 +++++++++++++---
>  1 file changed, 13 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/staging/fsl-mc/bus/mc-bus.c b/drivers/staging/fsl-mc/bus/mc-bus.c
> index 2aaeb3a..6a6c5a6 100644
> --- a/drivers/staging/fsl-mc/bus/mc-bus.c
> +++ b/drivers/staging/fsl-mc/bus/mc-bus.c
> @@ -22,6 +22,8 @@
>  
>  static struct kmem_cache *mc_dev_cache;
>  
> +static bool fsl_mc_is_root_dprc(struct device *dev);

Prefer defining functions before they are used rather than using forward
declarations.

> +
>  /**
>   * fsl_mc_bus_match - device to driver matching callback
>   * @dev: the MC object device structure to match against
> @@ -50,7 +52,7 @@ static int fsl_mc_bus_match(struct device *dev, struct device_driver *drv)
>  	 * Only exception is the root DPRC, which is a special case.
>  	 */
>  	if ((mc_dev->obj_desc.state & DPRC_OBJ_STATE_PLUGGED) == 0 &&
> -	    &mc_dev->dev != fsl_mc_bus_type.dev_root)
> +	    !fsl_mc_is_root_dprc(&mc_dev->dev))
>  		goto out;
>  
>  	/*
> @@ -215,6 +217,14 @@ bool fsl_mc_bus_exists(void)
>  }
>  EXPORT_SYMBOL_GPL(fsl_mc_bus_exists);
>  
> +/**
> + * fsl_mc_is_root_dprc - function to check if a given device is a root dprc
> + */
> +static bool fsl_mc_is_root_dprc(struct device *dev)
> +{
> +	return dev == fsl_mc_bus_type.dev_root;
> +}
> +
>  static int get_dprc_icid(struct fsl_mc_io *mc_io,
>  			 int container_id, u16 *icid)
>  {
> @@ -500,7 +510,7 @@ void fsl_mc_device_remove(struct fsl_mc_device *mc_dev)
>  			mc_dev->mc_io = NULL;
>  		}
>  
> -		if (&mc_dev->dev == fsl_mc_bus_type.dev_root)
> +		if (fsl_mc_is_root_dprc(&mc_dev->dev))
>  			fsl_mc_bus_type.dev_root = NULL;
>  	}
>  
> @@ -726,7 +736,7 @@ static int fsl_mc_bus_remove(struct platform_device *pdev)
>  {
>  	struct fsl_mc *mc = platform_get_drvdata(pdev);
>  
> -	if (WARN_ON(&mc->root_mc_bus_dev->dev != fsl_mc_bus_type.dev_root))
> +	if (WARN_ON(!fsl_mc_is_root_dprc(&mc->root_mc_bus_dev->dev)))
>  		return -EINVAL;
>  
>  	fsl_mc_device_remove(mc->root_mc_bus_dev);
> -- 
> 1.7.9.5
> 
> _______________________________________________
> devel mailing list
> devel@linuxdriverproject.org
> http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

  reply	other threads:[~2015-10-06  8:48 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-04  7:09 [PATCH 0/5] staging: fsl-mc: multiple root DPRCs itai.katz
2015-10-04  7:09 ` [PATCH 1/5] staging: fsl-mc: abstract test for existence of fsl-mc bus itai.katz
2015-10-04  7:09 ` [PATCH 2/5] staging: fsl-mc: abstract test for whether a dprc is a root dprc itai.katz
2015-10-06  8:47   ` Mike Rapoport [this message]
2015-10-06 13:39     ` Katz Itai
2015-10-04  7:09 ` [PATCH 3/5] staging: fsl-mc: add function to return pointer to " itai.katz
2015-10-04  7:09 ` [PATCH 4/5] staging: fsl-mc: add counter to track number of root DPRCs itai.katz
2015-10-04  7:09 ` [PATCH 5/5] staging: fsl-mc: remove references to dev_root itai.katz

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=20151006084750.GA25573@zed.theccd.local \
    --to=mike.rapoport@gmail.com \
    --cc=R89243@freescale.com \
    --cc=agraf@suse.de \
    --cc=arnd@arndb.de \
    --cc=bhamciu1@freescale.com \
    --cc=bhupesh.sharma@freescale.com \
    --cc=dan.carpenter@oracle.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=german.rivera@freescale.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=itai.katz@freescale.com \
    --cc=lijun.pan@freescale.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nir.erez@freescale.com \
    --cc=richard.schmitt@freescale.com \
    --cc=scottwood@freescale.com \
    --cc=stuart.yoder@freescale.com \
    /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