* [PATCH] Fix a hard coding style when determining if a device is a container.
@ 2012-10-12 6:55 Tang Chen
2012-10-12 10:10 ` Yasuaki Ishimatsu
0 siblings, 1 reply; 3+ messages in thread
From: Tang Chen @ 2012-10-12 6:55 UTC (permalink / raw)
To: bhelgaas, lenb, yinghai, izumi.taku, jiang.liu, linux-acpi,
linux-pci, linux-kernel
Cc: Tang Chen
"ACPI0004","PNP0A05" and "PNP0A06" are all defined in array
container_device_ids[], so use it, but not the hard coding style.
Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
---
drivers/acpi/container.c | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/drivers/acpi/container.c b/drivers/acpi/container.c
index 1f9f7d7..448c0e2 100644
--- a/drivers/acpi/container.c
+++ b/drivers/acpi/container.c
@@ -217,6 +217,7 @@ container_walk_namespace_cb(acpi_handle handle,
{
char *hid = NULL;
struct acpi_device_info *info;
+ struct acpi_device_id *container_id;
acpi_status status;
int *action = context;
@@ -232,10 +233,13 @@ container_walk_namespace_cb(acpi_handle handle,
goto end;
}
- if (strcmp(hid, "ACPI0004") && strcmp(hid, "PNP0A05") &&
- strcmp(hid, "PNP0A06")) {
- goto end;
+ for (container_id = container_device_ids;
+ container_id->id[0]; container_id++) {
+ if (!strcmp((char *)container_id->id, hid))
+ break;
}
+ if (!container_id->id[0])
+ goto end;
switch (*action) {
case INSTALL_NOTIFY_HANDLER:
--
1.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Fix a hard coding style when determining if a device is a container.
2012-10-12 6:55 [PATCH] Fix a hard coding style when determining if a device is a container Tang Chen
@ 2012-10-12 10:10 ` Yasuaki Ishimatsu
2012-10-12 10:47 ` Tang Chen
0 siblings, 1 reply; 3+ messages in thread
From: Yasuaki Ishimatsu @ 2012-10-12 10:10 UTC (permalink / raw)
To: Tang Chen
Cc: bhelgaas, lenb, yinghai, izumi.taku, jiang.liu, linux-acpi,
linux-pci, linux-kernel
Hi Tang,
2012/10/12 15:55, Tang Chen wrote:
> "ACPI0004","PNP0A05" and "PNP0A06" are all defined in array
> container_device_ids[], so use it, but not the hard coding style.
The idea is good.
>
> Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com>
> ---
> drivers/acpi/container.c | 10 +++++++---
> 1 files changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/acpi/container.c b/drivers/acpi/container.c
> index 1f9f7d7..448c0e2 100644
> --- a/drivers/acpi/container.c
> +++ b/drivers/acpi/container.c
> @@ -217,6 +217,7 @@ container_walk_namespace_cb(acpi_handle handle,
> {
> char *hid = NULL;
> struct acpi_device_info *info;
> + struct acpi_device_id *container_id;
> acpi_status status;
> int *action = context;
>
> @@ -232,10 +233,13 @@ container_walk_namespace_cb(acpi_handle handle,
> goto end;
> }
>
> - if (strcmp(hid, "ACPI0004") && strcmp(hid, "PNP0A05") &&
> - strcmp(hid, "PNP0A06")) {
> - goto end;
> + for (container_id = container_device_ids;
> + container_id->id[0]; container_id++) {
> + if (!strcmp((char *)container_id->id, hid))
> + break;
> }
> + if (!container_id->id[0])
> + goto end;
How about prepare is_container_device() function and check whether
the device is the container device or not as below?
if (is_container_device())
goto end;
Thanks,
Yasuaki Ishimatsu
>
> switch (*action) {
> case INSTALL_NOTIFY_HANDLER:
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Fix a hard coding style when determining if a device is a container.
2012-10-12 10:10 ` Yasuaki Ishimatsu
@ 2012-10-12 10:47 ` Tang Chen
0 siblings, 0 replies; 3+ messages in thread
From: Tang Chen @ 2012-10-12 10:47 UTC (permalink / raw)
To: Yasuaki Ishimatsu
Cc: bhelgaas, lenb, yinghai, izumi.taku, jiang.liu, linux-acpi,
linux-pci, linux-kernel
On 10/12/2012 06:10 PM, Yasuaki Ishimatsu wrote:
> Hi Tang,
>
> 2012/10/12 15:55, Tang Chen wrote:
>> "ACPI0004","PNP0A05" and "PNP0A06" are all defined in array
>> container_device_ids[], so use it, but not the hard coding style.
>
> The idea is good.
>
>>
>> Signed-off-by: Tang Chen<tangchen@cn.fujitsu.com>
>> ---
>> drivers/acpi/container.c | 10 +++++++---
>> 1 files changed, 7 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/acpi/container.c b/drivers/acpi/container.c
>> index 1f9f7d7..448c0e2 100644
>> --- a/drivers/acpi/container.c
>> +++ b/drivers/acpi/container.c
>> @@ -217,6 +217,7 @@ container_walk_namespace_cb(acpi_handle handle,
>> {
>> char *hid = NULL;
>> struct acpi_device_info *info;
>> + struct acpi_device_id *container_id;
>> acpi_status status;
>> int *action = context;
>>
>> @@ -232,10 +233,13 @@ container_walk_namespace_cb(acpi_handle handle,
>> goto end;
>> }
>>
>> - if (strcmp(hid, "ACPI0004")&& strcmp(hid, "PNP0A05")&&
>> - strcmp(hid, "PNP0A06")) {
>> - goto end;
>> + for (container_id = container_device_ids;
>> + container_id->id[0]; container_id++) {
>> + if (!strcmp((char *)container_id->id, hid))
>> + break;
>> }
>> + if (!container_id->id[0])
>> + goto end;
>
> How about prepare is_container_device() function and check whether
> the device is the container device or not as below?
Sure. :)
A new patch will be sent soon.
Thanks for the wonderful idea. :)
>
> if (is_container_device())
> goto end;
>
> Thanks,
> Yasuaki Ishimatsu
>
>>
>> switch (*action) {
>> case INSTALL_NOTIFY_HANDLER:
>>
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-10-12 11:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-12 6:55 [PATCH] Fix a hard coding style when determining if a device is a container Tang Chen
2012-10-12 10:10 ` Yasuaki Ishimatsu
2012-10-12 10:47 ` Tang Chen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox