Re: [PATCH] mfd: lpc_sch: Ignore resource conflicts when adding mfd cells

2013-10-23 Thread Johannes Thumshirn
On Wed, Oct 23, 2013 at 02:05:27PM +0100, Lee Jones wrote:
> On Wed, 23 Oct 2013, Johannes Thumshirn wrote:
>
> > Currently probe of lpc_sch fails on Intel Poulsbo because of ACPI resource
> > conflicts. A solution is to  set the ignore_resource_conflicts flag in the 
> > mfd cells.
> >
> > Tested-by: Andreas Werner 
> > Signed-off-by: Johannes Thumshirn 
> > ---
> >  drivers/mfd/lpc_sch.c |3 +++
> >  1 file changed, 3 insertions(+)
>
> I'm okay with this change. I'll apply it until someone else complains.
>
> --
> Lee Jones
> Linaro STMicroelectronics Landing Team Lead
> Linaro.org │ Open source software for ARM SoCs
> Follow Linaro: Facebook | Twitter | Blog

 Wow, that was fast.

  Johannes
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] mfd: lpc_sch: Ignore resource conflicts when adding mfd cells

2013-10-23 Thread Lee Jones
On Wed, 23 Oct 2013, Johannes Thumshirn wrote:

> Currently probe of lpc_sch fails on Intel Poulsbo because of ACPI resource
> conflicts. A solution is to  set the ignore_resource_conflicts flag in the 
> mfd cells.
> 
> Tested-by: Andreas Werner 
> Signed-off-by: Johannes Thumshirn 
> ---
>  drivers/mfd/lpc_sch.c |3 +++
>  1 file changed, 3 insertions(+)

I'm okay with this change. I'll apply it until someone else complains.

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] mfd: lpc_sch: Ignore resource conflicts when adding mfd cells

2013-10-23 Thread Johannes Thumshirn
Currently probe of lpc_sch fails on Intel Poulsbo because of ACPI resource
conflicts. A solution is to  set the ignore_resource_conflicts flag in the mfd 
cells.

Tested-by: Andreas Werner 
Signed-off-by: Johannes Thumshirn 
---
 drivers/mfd/lpc_sch.c |3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/mfd/lpc_sch.c b/drivers/mfd/lpc_sch.c
index 8cc6aac..fbfbf0b 100644
--- a/drivers/mfd/lpc_sch.c
+++ b/drivers/mfd/lpc_sch.c
@@ -59,18 +59,21 @@ static struct mfd_cell isch_smbus_cell = {
.name = "isch_smbus",
.num_resources = 1,
.resources = _sch_resource,
+   .ignore_resource_conflicts = true,
 };
 
 static struct mfd_cell sch_gpio_cell = {
.name = "sch_gpio",
.num_resources = 1,
.resources = _sch_resource,
+   .ignore_resource_conflicts = true,
 };
 
 static struct mfd_cell wdt_sch_cell = {
.name = "ie6xx_wdt",
.num_resources = 1,
.resources = _sch_resource,
+   .ignore_resource_conflicts = true,
 };
 
 static DEFINE_PCI_DEVICE_TABLE(lpc_sch_ids) = {
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] mfd: lpc_sch: Ignore resource conflicts when adding mfd cells

2013-10-23 Thread Johannes Thumshirn
Currently probe of lpc_sch fails on Intel Poulsbo because of ACPI resource
conflicts. A solution is to  set the ignore_resource_conflicts flag in the mfd 
cells.

Tested-by: Andreas Werner andreas.wer...@men.de
Signed-off-by: Johannes Thumshirn johannes.thumsh...@men.de
---
 drivers/mfd/lpc_sch.c |3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/mfd/lpc_sch.c b/drivers/mfd/lpc_sch.c
index 8cc6aac..fbfbf0b 100644
--- a/drivers/mfd/lpc_sch.c
+++ b/drivers/mfd/lpc_sch.c
@@ -59,18 +59,21 @@ static struct mfd_cell isch_smbus_cell = {
.name = isch_smbus,
.num_resources = 1,
.resources = smbus_sch_resource,
+   .ignore_resource_conflicts = true,
 };
 
 static struct mfd_cell sch_gpio_cell = {
.name = sch_gpio,
.num_resources = 1,
.resources = gpio_sch_resource,
+   .ignore_resource_conflicts = true,
 };
 
 static struct mfd_cell wdt_sch_cell = {
.name = ie6xx_wdt,
.num_resources = 1,
.resources = wdt_sch_resource,
+   .ignore_resource_conflicts = true,
 };
 
 static DEFINE_PCI_DEVICE_TABLE(lpc_sch_ids) = {
-- 
1.7.9.5

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] mfd: lpc_sch: Ignore resource conflicts when adding mfd cells

2013-10-23 Thread Lee Jones
On Wed, 23 Oct 2013, Johannes Thumshirn wrote:

 Currently probe of lpc_sch fails on Intel Poulsbo because of ACPI resource
 conflicts. A solution is to  set the ignore_resource_conflicts flag in the 
 mfd cells.
 
 Tested-by: Andreas Werner andreas.wer...@men.de
 Signed-off-by: Johannes Thumshirn johannes.thumsh...@men.de
 ---
  drivers/mfd/lpc_sch.c |3 +++
  1 file changed, 3 insertions(+)

I'm okay with this change. I'll apply it until someone else complains.

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] mfd: lpc_sch: Ignore resource conflicts when adding mfd cells

2013-10-23 Thread Johannes Thumshirn
On Wed, Oct 23, 2013 at 02:05:27PM +0100, Lee Jones wrote:
 On Wed, 23 Oct 2013, Johannes Thumshirn wrote:

  Currently probe of lpc_sch fails on Intel Poulsbo because of ACPI resource
  conflicts. A solution is to  set the ignore_resource_conflicts flag in the 
  mfd cells.
 
  Tested-by: Andreas Werner andreas.wer...@men.de
  Signed-off-by: Johannes Thumshirn johannes.thumsh...@men.de
  ---
   drivers/mfd/lpc_sch.c |3 +++
   1 file changed, 3 insertions(+)

 I'm okay with this change. I'll apply it until someone else complains.

 --
 Lee Jones
 Linaro STMicroelectronics Landing Team Lead
 Linaro.org │ Open source software for ARM SoCs
 Follow Linaro: Facebook | Twitter | Blog

 Wow, that was fast.

  Johannes
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/