diff mbox series

[v4,3/5] ACPI: Drop acpi_dev_irqresource_disabled()

Message ID 1606757759-6076-4-git-send-email-john.garry@huawei.com
State Superseded
Headers show
Series Support managed interrupts for platform devices | expand

Commit Message

John Garry Nov. 30, 2020, 5:35 p.m. UTC
The functionality of acpi_dev_irqresource_disabled() is same as in common
irqresource_disabled(), so drop acpi_dev_irqresource_disabled() in favour
of that function.

Signed-off-by: John Garry <john.garry@huawei.com>

---
 drivers/acpi/resource.c | 17 +++++------------
 1 file changed, 5 insertions(+), 12 deletions(-)

-- 
2.26.2

Comments

Rafael J. Wysocki Dec. 1, 2020, 7:01 p.m. UTC | #1
On Mon, Nov 30, 2020 at 6:41 PM John Garry <john.garry@huawei.com> wrote:
>

> The functionality of acpi_dev_irqresource_disabled() is same as in common

> irqresource_disabled(), so drop acpi_dev_irqresource_disabled() in favour

> of that function.

>

> Signed-off-by: John Garry <john.garry@huawei.com>


Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>


> ---

>  drivers/acpi/resource.c | 17 +++++------------

>  1 file changed, 5 insertions(+), 12 deletions(-)

>

> diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c

> index ad04824ca3ba..58203193417e 100644

> --- a/drivers/acpi/resource.c

> +++ b/drivers/acpi/resource.c

> @@ -380,13 +380,6 @@ unsigned int acpi_dev_get_irq_type(int triggering, int polarity)

>  }

>  EXPORT_SYMBOL_GPL(acpi_dev_get_irq_type);

>

> -static void acpi_dev_irqresource_disabled(struct resource *res, u32 gsi)

> -{

> -       res->start = gsi;

> -       res->end = gsi;

> -       res->flags = IORESOURCE_IRQ | IORESOURCE_DISABLED | IORESOURCE_UNSET;

> -}

> -

>  static void acpi_dev_get_irqresource(struct resource *res, u32 gsi,

>                                      u8 triggering, u8 polarity, u8 shareable,

>                                      bool legacy)

> @@ -394,7 +387,7 @@ static void acpi_dev_get_irqresource(struct resource *res, u32 gsi,

>         int irq, p, t;

>

>         if (!valid_IRQ(gsi)) {

> -               acpi_dev_irqresource_disabled(res, gsi);

> +               irqresource_disabled(res, gsi);

>                 return;

>         }

>

> @@ -426,7 +419,7 @@ static void acpi_dev_get_irqresource(struct resource *res, u32 gsi,

>                 res->start = irq;

>                 res->end = irq;

>         } else {

> -               acpi_dev_irqresource_disabled(res, gsi);

> +               irqresource_disabled(res, gsi);

>         }

>  }

>

> @@ -463,7 +456,7 @@ bool acpi_dev_resource_interrupt(struct acpi_resource *ares, int index,

>                  */

>                 irq = &ares->data.irq;

>                 if (index >= irq->interrupt_count) {

> -                       acpi_dev_irqresource_disabled(res, 0);

> +                       irqresource_disabled(res, 0);

>                         return false;

>                 }

>                 acpi_dev_get_irqresource(res, irq->interrupts[index],

> @@ -473,7 +466,7 @@ bool acpi_dev_resource_interrupt(struct acpi_resource *ares, int index,

>         case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:

>                 ext_irq = &ares->data.extended_irq;

>                 if (index >= ext_irq->interrupt_count) {

> -                       acpi_dev_irqresource_disabled(res, 0);

> +                       irqresource_disabled(res, 0);

>                         return false;

>                 }

>                 if (is_gsi(ext_irq))

> @@ -481,7 +474,7 @@ bool acpi_dev_resource_interrupt(struct acpi_resource *ares, int index,

>                                          ext_irq->triggering, ext_irq->polarity,

>                                          ext_irq->shareable, false);

>                 else

> -                       acpi_dev_irqresource_disabled(res, 0);

> +                       irqresource_disabled(res, 0);

>                 break;

>         default:

>                 res->flags = 0;

> --

> 2.26.2

>
diff mbox series

Patch

diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
index ad04824ca3ba..58203193417e 100644
--- a/drivers/acpi/resource.c
+++ b/drivers/acpi/resource.c
@@ -380,13 +380,6 @@  unsigned int acpi_dev_get_irq_type(int triggering, int polarity)
 }
 EXPORT_SYMBOL_GPL(acpi_dev_get_irq_type);
 
-static void acpi_dev_irqresource_disabled(struct resource *res, u32 gsi)
-{
-	res->start = gsi;
-	res->end = gsi;
-	res->flags = IORESOURCE_IRQ | IORESOURCE_DISABLED | IORESOURCE_UNSET;
-}
-
 static void acpi_dev_get_irqresource(struct resource *res, u32 gsi,
 				     u8 triggering, u8 polarity, u8 shareable,
 				     bool legacy)
@@ -394,7 +387,7 @@  static void acpi_dev_get_irqresource(struct resource *res, u32 gsi,
 	int irq, p, t;
 
 	if (!valid_IRQ(gsi)) {
-		acpi_dev_irqresource_disabled(res, gsi);
+		irqresource_disabled(res, gsi);
 		return;
 	}
 
@@ -426,7 +419,7 @@  static void acpi_dev_get_irqresource(struct resource *res, u32 gsi,
 		res->start = irq;
 		res->end = irq;
 	} else {
-		acpi_dev_irqresource_disabled(res, gsi);
+		irqresource_disabled(res, gsi);
 	}
 }
 
@@ -463,7 +456,7 @@  bool acpi_dev_resource_interrupt(struct acpi_resource *ares, int index,
 		 */
 		irq = &ares->data.irq;
 		if (index >= irq->interrupt_count) {
-			acpi_dev_irqresource_disabled(res, 0);
+			irqresource_disabled(res, 0);
 			return false;
 		}
 		acpi_dev_get_irqresource(res, irq->interrupts[index],
@@ -473,7 +466,7 @@  bool acpi_dev_resource_interrupt(struct acpi_resource *ares, int index,
 	case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
 		ext_irq = &ares->data.extended_irq;
 		if (index >= ext_irq->interrupt_count) {
-			acpi_dev_irqresource_disabled(res, 0);
+			irqresource_disabled(res, 0);
 			return false;
 		}
 		if (is_gsi(ext_irq))
@@ -481,7 +474,7 @@  bool acpi_dev_resource_interrupt(struct acpi_resource *ares, int index,
 					 ext_irq->triggering, ext_irq->polarity,
 					 ext_irq->shareable, false);
 		else
-			acpi_dev_irqresource_disabled(res, 0);
+			irqresource_disabled(res, 0);
 		break;
 	default:
 		res->flags = 0;