From: Simon Horman <horms@verge.net.au>
To: Tejun Heo <tj@kernel.org>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
Magnus Damm <magnus.damm@gmail.com>,
linux-ide@vger.kernel.org, linux-sh@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] ata: limit sata_rcar host driver to ARCH_SHMOBILE
Date: Tue, 25 Mar 2014 14:06:27 -0700 [thread overview]
Message-ID: <20140325210627.GF27673@verge.net.au> (raw)
In-Reply-To: <20140325191324.GA3279@htj.dyndns.org>
On Tue, Mar 25, 2014 at 03:13:24PM -0400, Tejun Heo wrote:
> On Tue, Mar 25, 2014 at 08:10:27PM +0100, Bartlomiej Zolnierkiewicz wrote:
> > Limit sata_rcar host driver to ARCH_SHMOBILE as Renesas R-Car SATA
> > support is specific to Renesas SoCs and the driver to work requires
> > suitable device tree node (or platform device) to be defined.
> >
> > Cc: Simon Horman <horms@verge.net.au>
> > Cc: Magnus Damm <magnus.damm@gmail.com>
> > Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> > ---
> > drivers/ata/Kconfig | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > Index: b/drivers/ata/Kconfig
> > ===================================================================
> > --- a/drivers/ata/Kconfig 2014-03-25 19:52:31.952327027 +0100
> > +++ b/drivers/ata/Kconfig 2014-03-25 19:57:21.104322097 +0100
> > @@ -298,6 +298,7 @@ config SATA_PROMISE
> >
> > config SATA_RCAR
> > tristate "Renesas R-Car SATA support"
> > + depends on ARCH_SHMOBILE
>
> COMPILE_TEST?
I think the following would make sense:
depends on ARCH_SHMOBILE || COMPILE_TEST
WARNING: multiple messages have this Message-ID (diff)
From: Simon Horman <horms@verge.net.au>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] ata: limit sata_rcar host driver to ARCH_SHMOBILE
Date: Tue, 25 Mar 2014 21:06:27 +0000 [thread overview]
Message-ID: <20140325210627.GF27673@verge.net.au> (raw)
In-Reply-To: <20140325191324.GA3279@htj.dyndns.org>
On Tue, Mar 25, 2014 at 03:13:24PM -0400, Tejun Heo wrote:
> On Tue, Mar 25, 2014 at 08:10:27PM +0100, Bartlomiej Zolnierkiewicz wrote:
> > Limit sata_rcar host driver to ARCH_SHMOBILE as Renesas R-Car SATA
> > support is specific to Renesas SoCs and the driver to work requires
> > suitable device tree node (or platform device) to be defined.
> >
> > Cc: Simon Horman <horms@verge.net.au>
> > Cc: Magnus Damm <magnus.damm@gmail.com>
> > Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> > ---
> > drivers/ata/Kconfig | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > Index: b/drivers/ata/Kconfig
> > =================================> > --- a/drivers/ata/Kconfig 2014-03-25 19:52:31.952327027 +0100
> > +++ b/drivers/ata/Kconfig 2014-03-25 19:57:21.104322097 +0100
> > @@ -298,6 +298,7 @@ config SATA_PROMISE
> >
> > config SATA_RCAR
> > tristate "Renesas R-Car SATA support"
> > + depends on ARCH_SHMOBILE
>
> COMPILE_TEST?
I think the following would make sense:
depends on ARCH_SHMOBILE || COMPILE_TEST
WARNING: multiple messages have this Message-ID (diff)
From: horms@verge.net.au (Simon Horman)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ata: limit sata_rcar host driver to ARCH_SHMOBILE
Date: Tue, 25 Mar 2014 14:06:27 -0700 [thread overview]
Message-ID: <20140325210627.GF27673@verge.net.au> (raw)
In-Reply-To: <20140325191324.GA3279@htj.dyndns.org>
On Tue, Mar 25, 2014 at 03:13:24PM -0400, Tejun Heo wrote:
> On Tue, Mar 25, 2014 at 08:10:27PM +0100, Bartlomiej Zolnierkiewicz wrote:
> > Limit sata_rcar host driver to ARCH_SHMOBILE as Renesas R-Car SATA
> > support is specific to Renesas SoCs and the driver to work requires
> > suitable device tree node (or platform device) to be defined.
> >
> > Cc: Simon Horman <horms@verge.net.au>
> > Cc: Magnus Damm <magnus.damm@gmail.com>
> > Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> > ---
> > drivers/ata/Kconfig | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > Index: b/drivers/ata/Kconfig
> > ===================================================================
> > --- a/drivers/ata/Kconfig 2014-03-25 19:52:31.952327027 +0100
> > +++ b/drivers/ata/Kconfig 2014-03-25 19:57:21.104322097 +0100
> > @@ -298,6 +298,7 @@ config SATA_PROMISE
> >
> > config SATA_RCAR
> > tristate "Renesas R-Car SATA support"
> > + depends on ARCH_SHMOBILE
>
> COMPILE_TEST?
I think the following would make sense:
depends on ARCH_SHMOBILE || COMPILE_TEST
next prev parent reply other threads:[~2014-03-25 21:06 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-25 19:10 [PATCH] ata: limit sata_rcar host driver to ARCH_SHMOBILE Bartlomiej Zolnierkiewicz
2014-03-25 19:10 ` Bartlomiej Zolnierkiewicz
2014-03-25 19:10 ` Bartlomiej Zolnierkiewicz
2014-03-25 19:13 ` Tejun Heo
2014-03-25 19:13 ` Tejun Heo
2014-03-25 19:13 ` Tejun Heo
2014-03-25 21:06 ` Simon Horman [this message]
2014-03-25 21:06 ` Simon Horman
2014-03-25 21:06 ` Simon Horman
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=20140325210627.GF27673@verge.net.au \
--to=horms@verge.net.au \
--cc=b.zolnierkie@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=magnus.damm@gmail.com \
--cc=tj@kernel.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 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.