[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <48CF0CA4.3090701@gmail.com>
Date: Mon, 15 Sep 2008 21:32:20 -0400
From: roel kluin <roel.kluin@...il.com>
To: ak@...ux.intel.com, lenb@...nel.org, linux-acpi@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH ?] ACPI: pr->id is unsigned
since pr->id is unsigned, shouldn't something like
the patch below be applied?
Signed-off-by: Roel Kluin <roel.kluin@...il.com>
---
diff --git a/drivers/acpi/processor_core.c b/drivers/acpi/processor_core.c
index e36422a..75c0f76 100644
--- a/drivers/acpi/processor_core.c
+++ b/drivers/acpi/processor_core.c
@@ -667,7 +667,7 @@ static int __cpuinit acpi_processor_start(struct acpi_device *device)
return 0;
}
- BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0));
+ BUG_ON((pr->id >= nr_cpu_ids) || ((unsigned long)pr->id < 0));
/*
* Buggy BIOS check
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists