* [PATCH] drivers/char/sonypi.c: fix ids member of struct acpi_driver
@ 2007-08-01 9:15 Eugene Teo
2007-08-02 6:40 ` Mattia Dongili
0 siblings, 1 reply; 5+ messages in thread
From: Eugene Teo @ 2007-08-01 9:15 UTC (permalink / raw)
To: linux-kernel; +Cc: Mattia Dongili
ids member of struct acpi_driver is of type struct acpi_device_id, not a
character array.
Signed-off-by: Eugene Teo <eugeneteo@kernel.sg>
---
drivers/char/sonypi.c | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
index 73037a4..ac0aeb0 100644
--- a/drivers/char/sonypi.c
+++ b/drivers/char/sonypi.c
@@ -1147,10 +1147,16 @@ static int sonypi_acpi_remove(struct acpi_device *device, int type)
return 0;
}
+const static struct acpi_device_id sonypi_device_ids[] = {
+ {"SNY6001", 0},
+ {"", 0},
+};
+MODULE_DEVICE_TABLE(acpi, sonypi_device_ids);
+
static struct acpi_driver sonypi_acpi_driver = {
.name = "sonypi",
.class = "hkey",
- .ids = "SNY6001",
+ .ids = sonypi_device_ids,
.ops = {
.add = sonypi_acpi_add,
.remove = sonypi_acpi_remove,
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] drivers/char/sonypi.c: fix ids member of struct acpi_driver
2007-08-01 9:15 [PATCH] drivers/char/sonypi.c: fix ids member of struct acpi_driver Eugene Teo
@ 2007-08-02 6:40 ` Mattia Dongili
2007-08-02 7:50 ` Thomas Renninger
0 siblings, 1 reply; 5+ messages in thread
From: Mattia Dongili @ 2007-08-02 6:40 UTC (permalink / raw)
To: Eugene Teo, Len Brown, Thomas Renninger; +Cc: linux-kernel
On Wed, Aug 01, 2007 at 05:15:34PM +0800, Eugene Teo wrote:
> ids member of struct acpi_driver is of type struct acpi_device_id, not a
> character array.
>
> Signed-off-by: Eugene Teo <eugeneteo@kernel.sg>
> ---
> drivers/char/sonypi.c | 8 +++++++-
> 1 files changed, 7 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
> index 73037a4..ac0aeb0 100644
> --- a/drivers/char/sonypi.c
> +++ b/drivers/char/sonypi.c
> @@ -1147,10 +1147,16 @@ static int sonypi_acpi_remove(struct acpi_device *device, int type)
> return 0;
> }
>
> +const static struct acpi_device_id sonypi_device_ids[] = {
> + {"SNY6001", 0},
> + {"", 0},
> +};
> +MODULE_DEVICE_TABLE(acpi, sonypi_device_ids);
how does it behave with the already existing id in sony-laptop?
I'd rather avoid the MODULE_DEVICE_TABLE for sonypi allowing sony-laptop
to take over automagically.
--
mattia
:wq!
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] drivers/char/sonypi.c: fix ids member of struct acpi_driver
2007-08-02 6:40 ` Mattia Dongili
@ 2007-08-02 7:50 ` Thomas Renninger
2007-08-02 7:59 ` Mattia Dongili
0 siblings, 1 reply; 5+ messages in thread
From: Thomas Renninger @ 2007-08-02 7:50 UTC (permalink / raw)
To: Mattia Dongili; +Cc: Eugene Teo, Len Brown, linux-kernel
On Thu, 2007-08-02 at 15:40 +0900, Mattia Dongili wrote:
> On Wed, Aug 01, 2007 at 05:15:34PM +0800, Eugene Teo wrote:
> > ids member of struct acpi_driver is of type struct acpi_device_id, not a
> > character array.
> >
> > Signed-off-by: Eugene Teo <eugeneteo@kernel.sg>
> > ---
> > drivers/char/sonypi.c | 8 +++++++-
> > 1 files changed, 7 insertions(+), 1 deletions(-)
> >
> > diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
> > index 73037a4..ac0aeb0 100644
> > --- a/drivers/char/sonypi.c
> > +++ b/drivers/char/sonypi.c
> > @@ -1147,10 +1147,16 @@ static int sonypi_acpi_remove(struct acpi_device *device, int type)
> > return 0;
> > }
> >
> > +const static struct acpi_device_id sonypi_device_ids[] = {
> > + {"SNY6001", 0},
> > + {"", 0},
> > +};
> > +MODULE_DEVICE_TABLE(acpi, sonypi_device_ids);
>
> how does it behave with the already existing id in sony-laptop?
> I'd rather avoid the MODULE_DEVICE_TABLE for sonypi allowing sony-laptop
> to take over automagically.
Yes, sounds reasonable.
The patch is needed, but MODULE_DEVICE_TABLE should be ripped out.
AFAIK sonypi and sony-laptop cannot coexist together. But sony-acpi
should be preferred. If someone needs sonypi, he needs to blacklist
sony-apci in modprobe.conf and load sonypi manually.
Shouldn't sony-acpi replace sonypi on longterm or at least addtional
"SNY6001" functionality be merged to sony-acpi? Having two drivers for
the same device is not a good idea.
Thanks,
Thomas
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] drivers/char/sonypi.c: fix ids member of struct acpi_driver
2007-08-02 7:50 ` Thomas Renninger
@ 2007-08-02 7:59 ` Mattia Dongili
2007-08-02 10:54 ` Eugene Teo
0 siblings, 1 reply; 5+ messages in thread
From: Mattia Dongili @ 2007-08-02 7:59 UTC (permalink / raw)
To: Thomas Renninger; +Cc: Eugene Teo, Len Brown, linux-kernel
On Thu, Aug 02, 2007 at 09:50:18AM +0200, Thomas Renninger wrote:
> On Thu, 2007-08-02 at 15:40 +0900, Mattia Dongili wrote:
> > On Wed, Aug 01, 2007 at 05:15:34PM +0800, Eugene Teo wrote:
> > > ids member of struct acpi_driver is of type struct acpi_device_id, not a
> > > character array.
> > >
> > > Signed-off-by: Eugene Teo <eugeneteo@kernel.sg>
> > > ---
> > > drivers/char/sonypi.c | 8 +++++++-
> > > 1 files changed, 7 insertions(+), 1 deletions(-)
> > >
> > > diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
> > > index 73037a4..ac0aeb0 100644
> > > --- a/drivers/char/sonypi.c
> > > +++ b/drivers/char/sonypi.c
> > > @@ -1147,10 +1147,16 @@ static int sonypi_acpi_remove(struct acpi_device *device, int type)
> > > return 0;
> > > }
> > >
> > > +const static struct acpi_device_id sonypi_device_ids[] = {
> > > + {"SNY6001", 0},
> > > + {"", 0},
> > > +};
> > > +MODULE_DEVICE_TABLE(acpi, sonypi_device_ids);
> >
> > how does it behave with the already existing id in sony-laptop?
> > I'd rather avoid the MODULE_DEVICE_TABLE for sonypi allowing sony-laptop
> > to take over automagically.
>
> Yes, sounds reasonable.
> The patch is needed, but MODULE_DEVICE_TABLE should be ripped out.
> AFAIK sonypi and sony-laptop cannot coexist together. But sony-acpi
> should be preferred. If someone needs sonypi, he needs to blacklist
> sony-apci in modprobe.conf and load sonypi manually.
Yes, that's what I meant.
> Shouldn't sony-acpi replace sonypi on longterm or at least addtional
> "SNY6001" functionality be merged to sony-acpi? Having two drivers for
> the same device is not a good idea.
yep, sony-laptop will replace sonypi. It still has some problems but
development is progressing in sony-laptop, not sonypi.
Eugene, I'll import the patch without the MODULE_DEVICE_TABLE line.
cheers
--
mattia
:wq!
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] drivers/char/sonypi.c: fix ids member of struct acpi_driver
2007-08-02 7:59 ` Mattia Dongili
@ 2007-08-02 10:54 ` Eugene Teo
0 siblings, 0 replies; 5+ messages in thread
From: Eugene Teo @ 2007-08-02 10:54 UTC (permalink / raw)
To: Mattia Dongili; +Cc: Thomas Renninger, Eugene Teo, Len Brown, linux-kernel
Hi Mattia,
<quote sender="Mattia Dongili">
> On Thu, Aug 02, 2007 at 09:50:18AM +0200, Thomas Renninger wrote:
> > On Thu, 2007-08-02 at 15:40 +0900, Mattia Dongili wrote:
> > > On Wed, Aug 01, 2007 at 05:15:34PM +0800, Eugene Teo wrote:
> > > > ids member of struct acpi_driver is of type struct acpi_device_id, not a
> > > > character array.
> > > >
> > > > Signed-off-by: Eugene Teo <eugeneteo@kernel.sg>
[...]
> yep, sony-laptop will replace sonypi. It still has some problems but
> development is progressing in sony-laptop, not sonypi.
>
> Eugene, I'll import the patch without the MODULE_DEVICE_TABLE line.
Ok, thanks.
Eugene
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-08-02 11:03 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-01 9:15 [PATCH] drivers/char/sonypi.c: fix ids member of struct acpi_driver Eugene Teo
2007-08-02 6:40 ` Mattia Dongili
2007-08-02 7:50 ` Thomas Renninger
2007-08-02 7:59 ` Mattia Dongili
2007-08-02 10:54 ` Eugene Teo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox