The patch titled
ACPI: Export acpi_check_resource_conflict() (update #2)
has been removed from the -mm tree. Its filename was
export-acpi_check_resource_conflict-update.patch
This patch was dropped because it was folded into
export-acpi_check_resource_conflict.patch
------------------------------------------------------
Subject: ACPI: Export acpi_check_resource_conflict() (update #2)
From: Jean Delvare <[EMAIL PROTECTED]>
Export acpi_check_resource_conflict(), sometimes drivers already have
a struct resource at hand so no need to use the wrappers to build a new
one.
Signed-off-by: Jean Delvare <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
include/linux/acpi.h | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff -puN include/linux/acpi.h~export-acpi_check_resource_conflict-update
include/linux/acpi.h
--- a/include/linux/acpi.h~export-acpi_check_resource_conflict-update
+++ a/include/linux/acpi.h
@@ -25,8 +25,8 @@
#ifndef _LINUX_ACPI_H
#define _LINUX_ACPI_H
+#include <linux/ioport.h> /* for struct resource */
-#include <linux/ioport.h>
#ifdef CONFIG_ACPI
#ifndef _LINUX
@@ -220,6 +220,11 @@ static inline int acpi_boot_table_init(v
return 0;
}
+static inline int acpi_check_resource_conflict(struct resource *res)
+{
+ return 0;
+}
+
static inline int acpi_check_region(resource_size_t start, resource_size_t n,
const char *name)
{
@@ -232,8 +237,5 @@ static inline int acpi_check_mem_region(
return 0;
}
-static inline int acpi_check_resource_conflict(struct resource *res)
-{ return 0; }
-
#endif /* CONFIG_ACPI */
#endif /*_LINUX_ACPI_H*/
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
acpi-cleanup-linux-acpih.patch
export-acpi_check_resource_conflict.patch
export-acpi_check_resource_conflict-update.patch
check-for-acpi-resource-conflicts-in-i2c-bus-drivers.patch
check-for-acpi-resource-conflicts-in-hwmon-drivers.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html