mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-17 06:48:07 +00:00
ebbeb55561
Also add script used to generate patches and SRC_URI Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
38 lines
1.2 KiB
Diff
38 lines
1.2 KiB
Diff
From 5ce240f2b5a8d96af3e2a2b4ea5868eab16f8c3d Mon Sep 17 00:00:00 2001
|
|
From: Jean Delvare <khali@linux-fr.org>
|
|
Date: Sat, 18 Feb 2012 17:54:23 +0100
|
|
Subject: [PATCH 20/95] mfd: Fix ACPI conflict check
|
|
|
|
commit 81b5482c32769abb6dfb979560dab2f952ba86fa upstream.
|
|
|
|
The code is currently always checking the first resource of every
|
|
device only (several times.) This has been broken since the ACPI check
|
|
was added in February 2010 in commit
|
|
91fedede0338eb6203cdd618d8ece873fdb7c22c.
|
|
|
|
Fix the check to run on each resource individually, once.
|
|
|
|
Signed-off-by: Jean Delvare <khali@linux-fr.org>
|
|
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
drivers/mfd/mfd-core.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/mfd/mfd-core.c b/drivers/mfd/mfd-core.c
|
|
index 0f59228..411f523 100644
|
|
--- a/drivers/mfd/mfd-core.c
|
|
+++ b/drivers/mfd/mfd-core.c
|
|
@@ -123,7 +123,7 @@ static int mfd_add_device(struct device *parent, int id,
|
|
}
|
|
|
|
if (!cell->ignore_resource_conflicts) {
|
|
- ret = acpi_check_resource_conflict(res);
|
|
+ ret = acpi_check_resource_conflict(&res[r]);
|
|
if (ret)
|
|
goto fail_res;
|
|
}
|
|
--
|
|
1.7.9.4
|
|
|