* [PATCH] ata: ahci: tegra: fix build error
@ 2014-08-21 19:08 Felipe Balbi
[not found] ` <20140821190824.GM11146-HgARHv6XitL9zxVx7UNMDg@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Felipe Balbi @ 2014-08-21 19:08 UTC (permalink / raw)
To: tj-DgEjT+Ai2ygdnm+yROfE0A, swarren-3lzwWm7+Weoh9ZMKESR00Q,
thierry.reding-Re5JQEeQqe8AvxtiuMwx3w
Cc: linux-ide-u79uwXL29TY76Z2rM5mHXA,
linux-tegra-u79uwXL29TY76Z2rM5mHXA, Linux Kernel Mailing List
[-- Attachment #1: Type: text/plain, Size: 1170 bytes --]
Currently, ahci_tegra doesn't build because it includes a file that
doesn't exist.
The problem is that first commit 306a7f9 (ARM: tegra: Move includes to
include/soc/tegra) renamed include/linux/tegra-powergate.h to
include/soc/tegra/powergate.h.
Later commit 7232398 (ARM: tegra: Convert PMC to a driver) renamed
include/soc/tegra/powergate.h to include/soc/tegra/pmc.h and neither
commits fixed drivers/ata/ahci_tegra.c.
Fix that so the driver has a chance of building. With current kernels.
Cc: <stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> # v3.16
Signed-of-by: Felipe Balbi <balbi-l0cyMroinI0@public.gmane.org>
---
drivers/ata/ahci_tegra.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/ata/ahci_tegra.c b/drivers/ata/ahci_tegra.c
index fc3df47..7194835 100644
--- a/drivers/ata/ahci_tegra.c
+++ b/drivers/ata/ahci_tegra.c
@@ -24,7 +24,7 @@
#include <linux/module.h>
#include <linux/of_device.h>
#include <linux/platform_device.h>
-#include <linux/tegra-powergate.h>
+#include <soc/tegra/pmc.h>
#include <linux/regulator/consumer.h>
#include "ahci.h"
--
2.0.1.563.g66f467c
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] ata: ahci: tegra: fix build error
[not found] ` <20140821190824.GM11146-HgARHv6XitL9zxVx7UNMDg@public.gmane.org>
@ 2014-08-21 19:17 ` Stephen Warren
[not found] ` <53F645BA.4000402-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2014-08-21 19:18 ` Felipe Balbi
1 sibling, 1 reply; 5+ messages in thread
From: Stephen Warren @ 2014-08-21 19:17 UTC (permalink / raw)
To: balbi-l0cyMroinI0
Cc: tj-DgEjT+Ai2ygdnm+yROfE0A, thierry.reding-Re5JQEeQqe8AvxtiuMwx3w,
linux-ide-u79uwXL29TY76Z2rM5mHXA,
linux-tegra-u79uwXL29TY76Z2rM5mHXA, Linux Kernel Mailing List
On 08/21/2014 01:08 PM, Felipe Balbi wrote:
> Currently, ahci_tegra doesn't build because it includes a file that
> doesn't exist.
>
> The problem is that first commit 306a7f9 (ARM: tegra: Move includes to
> include/soc/tegra) renamed include/linux/tegra-powergate.h to
> include/soc/tegra/powergate.h.
>
> Later commit 7232398 (ARM: tegra: Convert PMC to a driver) renamed
> include/soc/tegra/powergate.h to include/soc/tegra/pmc.h and neither
> commits fixed drivers/ata/ahci_tegra.c.
>
> Fix that so the driver has a chance of building. With current kernels.
>
> Cc: <stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> # v3.16
This driver first appeared in v3.17-rc1.
This patch has already been sent, and apparently applied:
https://lkml.org/lkml/2014/8/16/36
I wonder if libata/for-3.17-fixes isn't in linux-next?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ata: ahci: tegra: fix build error
[not found] ` <20140821190824.GM11146-HgARHv6XitL9zxVx7UNMDg@public.gmane.org>
2014-08-21 19:17 ` Stephen Warren
@ 2014-08-21 19:18 ` Felipe Balbi
1 sibling, 0 replies; 5+ messages in thread
From: Felipe Balbi @ 2014-08-21 19:18 UTC (permalink / raw)
To: Felipe Balbi
Cc: tj-DgEjT+Ai2ygdnm+yROfE0A, swarren-3lzwWm7+Weoh9ZMKESR00Q,
thierry.reding-Re5JQEeQqe8AvxtiuMwx3w,
linux-ide-u79uwXL29TY76Z2rM5mHXA,
linux-tegra-u79uwXL29TY76Z2rM5mHXA, Linux Kernel Mailing List
[-- Attachment #1: Type: text/plain, Size: 1425 bytes --]
On Thu, Aug 21, 2014 at 02:08:24PM -0500, Felipe Balbi wrote:
> Currently, ahci_tegra doesn't build because it includes a file that
> doesn't exist.
>
> The problem is that first commit 306a7f9 (ARM: tegra: Move includes to
> include/soc/tegra) renamed include/linux/tegra-powergate.h to
> include/soc/tegra/powergate.h.
>
> Later commit 7232398 (ARM: tegra: Convert PMC to a driver) renamed
> include/soc/tegra/powergate.h to include/soc/tegra/pmc.h and neither
> commits fixed drivers/ata/ahci_tegra.c.
>
> Fix that so the driver has a chance of building. With current kernels.
^
this period shouldn't
exist :-p
>
> Cc: <stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> # v3.16
> Signed-of-by: Felipe Balbi <balbi-l0cyMroinI0@public.gmane.org>
> ---
> drivers/ata/ahci_tegra.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/ata/ahci_tegra.c b/drivers/ata/ahci_tegra.c
> index fc3df47..7194835 100644
> --- a/drivers/ata/ahci_tegra.c
> +++ b/drivers/ata/ahci_tegra.c
> @@ -24,7 +24,7 @@
> #include <linux/module.h>
> #include <linux/of_device.h>
> #include <linux/platform_device.h>
> -#include <linux/tegra-powergate.h>
> +#include <soc/tegra/pmc.h>
> #include <linux/regulator/consumer.h>
> #include "ahci.h"
>
> --
> 2.0.1.563.g66f467c
>
> --
> balbi
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ata: ahci: tegra: fix build error
[not found] ` <53F645BA.4000402-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
@ 2014-08-21 19:21 ` Felipe Balbi
[not found] ` <20140821192134.GO11146-HgARHv6XitL9zxVx7UNMDg@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Felipe Balbi @ 2014-08-21 19:21 UTC (permalink / raw)
To: Stephen Warren
Cc: balbi-l0cyMroinI0, tj-DgEjT+Ai2ygdnm+yROfE0A,
thierry.reding-Re5JQEeQqe8AvxtiuMwx3w,
linux-ide-u79uwXL29TY76Z2rM5mHXA,
linux-tegra-u79uwXL29TY76Z2rM5mHXA, Linux Kernel Mailing List
[-- Attachment #1: Type: text/plain, Size: 1118 bytes --]
On Thu, Aug 21, 2014 at 01:17:14PM -0600, Stephen Warren wrote:
> On 08/21/2014 01:08 PM, Felipe Balbi wrote:
> >Currently, ahci_tegra doesn't build because it includes a file that
> >doesn't exist.
> >
> >The problem is that first commit 306a7f9 (ARM: tegra: Move includes to
> >include/soc/tegra) renamed include/linux/tegra-powergate.h to
> >include/soc/tegra/powergate.h.
> >
> >Later commit 7232398 (ARM: tegra: Convert PMC to a driver) renamed
> >include/soc/tegra/powergate.h to include/soc/tegra/pmc.h and neither
> >commits fixed drivers/ata/ahci_tegra.c.
> >
> >Fix that so the driver has a chance of building. With current kernels.
> >
> >Cc: <stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> # v3.16
>
> This driver first appeared in v3.17-rc1.
hmm... weird, git describe told v3.16-rc1 :-s
> This patch has already been sent, and apparently applied:
>
> https://lkml.org/lkml/2014/8/16/36
aha, thanks.
> I wonder if libata/for-3.17-fixes isn't in linux-next?
it is, it's just that I was build testing my branch which is based off
of v3.17-rc1 as of now.
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ata: ahci: tegra: fix build error
[not found] ` <20140821192134.GO11146-HgARHv6XitL9zxVx7UNMDg@public.gmane.org>
@ 2014-08-21 19:31 ` Tejun Heo
0 siblings, 0 replies; 5+ messages in thread
From: Tejun Heo @ 2014-08-21 19:31 UTC (permalink / raw)
To: Felipe Balbi
Cc: Stephen Warren, thierry.reding-Re5JQEeQqe8AvxtiuMwx3w,
linux-ide-u79uwXL29TY76Z2rM5mHXA,
linux-tegra-u79uwXL29TY76Z2rM5mHXA, Linux Kernel Mailing List
Hello,
On Thu, Aug 21, 2014 at 02:21:34PM -0500, Felipe Balbi wrote:
> > I wonder if libata/for-3.17-fixes isn't in linux-next?
>
> it is, it's just that I was build testing my branch which is based off
> of v3.17-rc1 as of now.
Yeah, I'm traveling and haven't had the chance to push it. I'll try
to push it right now.
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-08-21 19:31 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-21 19:08 [PATCH] ata: ahci: tegra: fix build error Felipe Balbi
[not found] ` <20140821190824.GM11146-HgARHv6XitL9zxVx7UNMDg@public.gmane.org>
2014-08-21 19:17 ` Stephen Warren
[not found] ` <53F645BA.4000402-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2014-08-21 19:21 ` Felipe Balbi
[not found] ` <20140821192134.GO11146-HgARHv6XitL9zxVx7UNMDg@public.gmane.org>
2014-08-21 19:31 ` Tejun Heo
2014-08-21 19:18 ` Felipe Balbi
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).