diff options
author | Jean Delvare <khali@linux-fr.org> | 2009-11-11 15:22:15 +0100 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-12-09 14:44:42 -0500 |
commit | 876fba43cc810e3c37ce26995933f9547b83cb0e (patch) | |
tree | ad61e29807e607b02e4ff7c68ac53e4005828419 /include/linux/acpi.h | |
parent | 22763c5cf3690a681551162c15d34d935308c8d7 (diff) | |
download | linux-3.10-876fba43cc810e3c37ce26995933f9547b83cb0e.tar.gz linux-3.10-876fba43cc810e3c37ce26995933f9547b83cb0e.tar.bz2 linux-3.10-876fba43cc810e3c37ce26995933f9547b83cb0e.zip |
ACPI: add const to acpi_check_resource_conflict()
acpi_check_resource_conflict() doesn't change the resource
it operates on, so the res parameter can be marked const.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/linux/acpi.h')
-rw-r--r-- | include/linux/acpi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index dfcd920c3e5..c920d2def4d 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h @@ -240,7 +240,7 @@ extern int pnpacpi_disabled; #define PXM_INVAL (-1) #define NID_INVAL (-1) -int acpi_check_resource_conflict(struct resource *res); +int acpi_check_resource_conflict(const struct resource *res); int acpi_check_region(resource_size_t start, resource_size_t n, const char *name); |