LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] sonypi: Fix initialization warning
@ 2007-08-05 19:05 Richard Knutsson
2007-08-05 19:50 ` Thomas Renninger
0 siblings, 1 reply; 5+ messages in thread
From: Richard Knutsson @ 2007-08-05 19:05 UTC (permalink / raw)
To: Ben Collins; +Cc: Brown, Len, linux-acpi, Stelian Pop, linux-kernel
Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
---
Got this from the compiler (gcc (GCC) 4.1.2 20070626 (Red Hat 4.1.2-13)):
drivers/char/sonypi.c:1153: warning: initialization from incompatible pointer type
diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
index 73037a4..2dcd519 100644
--- a/drivers/char/sonypi.c
+++ b/drivers/char/sonypi.c
@@ -1147,10 +1147,15 @@ static int sonypi_acpi_remove(struct acpi_device *device, int type)
return 0;
}
+static const struct acpi_device_id sonypi_acpi_driver_ids[] = {
+ {ACPI_PROCESSOR_HID, 0},
+ {"", 0},
+};
+
static struct acpi_driver sonypi_acpi_driver = {
.name = "sonypi",
.class = "hkey",
- .ids = "SNY6001",
+ .ids = sonypi_acpi_driver_ids,
.ops = {
.add = sonypi_acpi_add,
.remove = sonypi_acpi_remove,
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] sonypi: Fix initialization warning
2007-08-05 19:05 [PATCH] sonypi: Fix initialization warning Richard Knutsson
@ 2007-08-05 19:50 ` Thomas Renninger
2007-08-05 20:03 ` Richard Knutsson
0 siblings, 1 reply; 5+ messages in thread
From: Thomas Renninger @ 2007-08-05 19:50 UTC (permalink / raw)
To: Richard Knutsson
Cc: Ben Collins, Brown, Len, linux-acpi, Stelian Pop, linux-kernel
On Sun, 2007-08-05 at 21:05 +0200, Richard Knutsson wrote:
> Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
> ---
> Got this from the compiler (gcc (GCC) 4.1.2 20070626 (Red Hat 4.1.2-13)):
> drivers/char/sonypi.c:1153: warning: initialization from incompatible pointer type
>
>
> diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
> index 73037a4..2dcd519 100644
> --- a/drivers/char/sonypi.c
> +++ b/drivers/char/sonypi.c
> @@ -1147,10 +1147,15 @@ static int sonypi_acpi_remove(struct acpi_device *device, int type)
> return 0;
> }
>
> +static const struct acpi_device_id sonypi_acpi_driver_ids[] = {
> + {ACPI_PROCESSOR_HID, 0},
This is wrong. You need to take the HID the driver should match for, in
this case: {"SNY6001", 0 },
> + {"", 0},
> +};
> +
> static struct acpi_driver sonypi_acpi_driver = {
> .name = "sonypi",
> .class = "hkey",
> - .ids = "SNY6001",
> + .ids = sonypi_acpi_driver_ids,
> .ops = {
> .add = sonypi_acpi_add,
> .remove = sonypi_acpi_remove,
A patch from Eugene Teo fixing this is already on the list of Len's
patches.
See subject: [PATCH 04/12] sonypi: fix ids member of struct acpi_driver
posted yesterday on linux-acpi.
Anyway, thanks for the heads up,
Thomas
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] sonypi: Fix initialization warning
2007-08-05 19:50 ` Thomas Renninger
@ 2007-08-05 20:03 ` Richard Knutsson
2007-08-07 19:07 ` Len Brown
0 siblings, 1 reply; 5+ messages in thread
From: Richard Knutsson @ 2007-08-05 20:03 UTC (permalink / raw)
To: trenn; +Cc: Ben Collins, Brown, Len, linux-acpi, Stelian Pop, linux-kernel
Thomas Renninger wrote:
> On Sun, 2007-08-05 at 21:05 +0200, Richard Knutsson wrote:
>
>> Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
>> ---
>> Got this from the compiler (gcc (GCC) 4.1.2 20070626 (Red Hat 4.1.2-13)):
>> drivers/char/sonypi.c:1153: warning: initialization from incompatible pointer type
>>
>>
>> diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
>> index 73037a4..2dcd519 100644
>> --- a/drivers/char/sonypi.c
>> +++ b/drivers/char/sonypi.c
>> @@ -1147,10 +1147,15 @@ static int sonypi_acpi_remove(struct acpi_device *device, int type)
>> return 0;
>> }
>>
>> +static const struct acpi_device_id sonypi_acpi_driver_ids[] = {
>> + {ACPI_PROCESSOR_HID, 0},
>>
> This is wrong. You need to take the HID the driver should match for, in
> this case: {"SNY6001", 0 },
>
Oh bugger, a cut 'n' paste error...
Thanks for reviewing it.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] sonypi: Fix initialization warning
2007-08-05 20:03 ` Richard Knutsson
@ 2007-08-07 19:07 ` Len Brown
2007-08-08 7:20 ` Thomas Renninger
0 siblings, 1 reply; 5+ messages in thread
From: Len Brown @ 2007-08-07 19:07 UTC (permalink / raw)
To: Richard Knutsson
Cc: trenn, Ben Collins, linux-acpi, Stelian Pop, linux-kernel
On Sunday 05 August 2007 16:03, Richard Knutsson wrote:
> Thomas Renninger wrote:
> > On Sun, 2007-08-05 at 21:05 +0200, Richard Knutsson wrote:
> >
> >> Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
> >> ---
> >> Got this from the compiler (gcc (GCC) 4.1.2 20070626 (Red Hat 4.1.2-13)):
> >> drivers/char/sonypi.c:1153: warning: initialization from incompatible pointer type
> >>
> >>
> >> diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
> >> index 73037a4..2dcd519 100644
> >> --- a/drivers/char/sonypi.c
> >> +++ b/drivers/char/sonypi.c
> >> @@ -1147,10 +1147,15 @@ static int sonypi_acpi_remove(struct acpi_device *device, int type)
> >> return 0;
> >> }
> >>
> >> +static const struct acpi_device_id sonypi_acpi_driver_ids[] = {
> >> + {ACPI_PROCESSOR_HID, 0},
> >>
> > This is wrong. You need to take the HID the driver should match for, in
> > this case: {"SNY6001", 0 },
> >
like this?
http://git.kernel.org/?p=linux/kernel/git/lenb/linux-acpi-2.6.git;a=commitdiff;h=f7b88ccb63188e775fe02e746c39ed177741cfc7;hp=11604ecf6fb9c2ab0152fbddb7ea2724438ef76e
http://marc.info/?l=linux-acpi&m=118618043526395&w=2
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] sonypi: Fix initialization warning
2007-08-07 19:07 ` Len Brown
@ 2007-08-08 7:20 ` Thomas Renninger
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Renninger @ 2007-08-08 7:20 UTC (permalink / raw)
To: Len Brown
Cc: Richard Knutsson, Ben Collins, linux-acpi, Stelian Pop, linux-kernel
On Tue, 2007-08-07 at 15:07 -0400, Len Brown wrote:
> On Sunday 05 August 2007 16:03, Richard Knutsson wrote:
> > Thomas Renninger wrote:
> > > On Sun, 2007-08-05 at 21:05 +0200, Richard Knutsson wrote:
> > >
> > >> Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
> > >> ---
> > >> Got this from the compiler (gcc (GCC) 4.1.2 20070626 (Red Hat 4.1.2-13)):
> > >> drivers/char/sonypi.c:1153: warning: initialization from incompatible pointer type
> > >>
> > >>
> > >> diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
> > >> index 73037a4..2dcd519 100644
> > >> --- a/drivers/char/sonypi.c
> > >> +++ b/drivers/char/sonypi.c
> > >> @@ -1147,10 +1147,15 @@ static int sonypi_acpi_remove(struct acpi_device *device, int type)
> > >> return 0;
> > >> }
> > >>
> > >> +static const struct acpi_device_id sonypi_acpi_driver_ids[] = {
> > >> + {ACPI_PROCESSOR_HID, 0},
> > >>
> > > This is wrong. You need to take the HID the driver should match for, in
> > > this case: {"SNY6001", 0 },
> > >
>
> like this?
>
> http://git.kernel.org/?p=linux/kernel/git/lenb/linux-acpi-2.6.git;a=commitdiff;h=f7b88ccb63188e775fe02e746c39ed177741cfc7;hp=11604ecf6fb9c2ab0152fbddb7ea2724438ef76e
>
> http://marc.info/?l=linux-acpi&m=118618043526395&w=2
Yes.
Thanks,
Thomas
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-08-08 7:21 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-08-05 19:05 [PATCH] sonypi: Fix initialization warning Richard Knutsson
2007-08-05 19:50 ` Thomas Renninger
2007-08-05 20:03 ` Richard Knutsson
2007-08-07 19:07 ` Len Brown
2007-08-08 7:20 ` Thomas Renninger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).