* struct should not be named same way as function in sony-laptop
@ 2008-01-03 11:01 Pavel Machek
2008-01-03 11:15 ` Al Viro
0 siblings, 1 reply; 3+ messages in thread
From: Pavel Machek @ 2008-01-03 11:01 UTC (permalink / raw)
To: malattia, kernel list, Andrew Morton; +Cc: trivial
Naming struct and function by same name is evil. Rename the struct.
Signed-off-by: Pavel Machek <pavel@suse.cz>
diff --git a/drivers/misc/sony-laptop.c b/drivers/misc/sony-laptop.c
index b0f6803..31ce39d 100644
--- a/drivers/misc/sony-laptop.c
+++ b/drivers/misc/sony-laptop.c
@@ -1180,7 +1180,7 @@ struct sony_pic_ioport {
struct list_head list;
};
-struct sony_pic_irq {
+struct sony_pic_irqdesc {
struct acpi_resource_irq irq;
struct list_head list;
};
@@ -1192,7 +1192,7 @@ struct sony_pic_dev {
u8 bluetooth_power;
u8 wwan_power;
struct acpi_device *acpi_dev;
- struct sony_pic_irq *cur_irq;
+ struct sony_pic_irqdesc *cur_irq;
struct sony_pic_ioport *cur_ioport;
struct list_head interrupts;
struct list_head ioports;
@@ -2094,7 +2094,7 @@ sony_pic_read_possible_resource(struct a
case ACPI_RESOURCE_TYPE_IRQ:
{
struct acpi_resource_irq *p = &resource->data.irq;
- struct sony_pic_irq *interrupt = NULL;
+ struct sony_pic_irqdesc *interrupt = NULL;
if (!p || !p->interrupt_count) {
/*
* IRQ descriptors may have no IRQ# bits set,
@@ -2218,7 +2218,7 @@ static int sony_pic_disable(struct acpi_
* Call _SRS to set current resources
*/
static int sony_pic_enable(struct acpi_device *device,
- struct sony_pic_ioport *ioport, struct sony_pic_irq *irq)
+ struct sony_pic_ioport *ioport, struct sony_pic_irqdesc *irq)
{
acpi_status status;
int result = 0;
@@ -2381,7 +2381,7 @@ found:
static int sony_pic_remove(struct acpi_device *device, int type)
{
struct sony_pic_ioport *io, *tmp_io;
- struct sony_pic_irq *irq, *tmp_irq;
+ struct sony_pic_irqdesc *irq, *tmp_irq;
if (sony_pic_disable(device)) {
printk(KERN_ERR DRV_PFX "Couldn't disable device.\n");
@@ -2422,7 +2422,7 @@ static int sony_pic_add(struct acpi_devi
{
int result;
struct sony_pic_ioport *io, *tmp_io;
- struct sony_pic_irq *irq, *tmp_irq;
+ struct sony_pic_irqdesc *irq, *tmp_irq;
printk(KERN_INFO DRV_PFX "%s v%s.\n",
SONY_PIC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: struct should not be named same way as function in sony-laptop
2008-01-03 11:01 struct should not be named same way as function in sony-laptop Pavel Machek
@ 2008-01-03 11:15 ` Al Viro
2008-01-03 17:09 ` Pavel Machek
0 siblings, 1 reply; 3+ messages in thread
From: Al Viro @ 2008-01-03 11:15 UTC (permalink / raw)
To: Pavel Machek; +Cc: malattia, kernel list, Andrew Morton, trivial
On Thu, Jan 03, 2008 at 12:01:54PM +0100, Pavel Machek wrote:
> Naming struct and function by same name is evil. Rename the struct.
Um... why? It's not even particulary bad style per se... Occurs less
frequently than things like
struct foo *foo;
but nothing inherently terrible and not likely to cause any kind of
confusion.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: struct should not be named same way as function in sony-laptop
2008-01-03 11:15 ` Al Viro
@ 2008-01-03 17:09 ` Pavel Machek
0 siblings, 0 replies; 3+ messages in thread
From: Pavel Machek @ 2008-01-03 17:09 UTC (permalink / raw)
To: Al Viro; +Cc: malattia, kernel list, Andrew Morton, trivial
On Thu 2008-01-03 11:15:43, Al Viro wrote:
> On Thu, Jan 03, 2008 at 12:01:54PM +0100, Pavel Machek wrote:
> > Naming struct and function by same name is evil. Rename the struct.
>
> Um... why? It's not even particulary bad style per se... Occurs less
> frequently than things like
> struct foo *foo;
> but nothing inherently terrible and not likely to cause any kind of
> confusion.
Well, it confused me a lot in this particular case...
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-01-03 17:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-03 11:01 struct should not be named same way as function in sony-laptop Pavel Machek
2008-01-03 11:15 ` Al Viro
2008-01-03 17:09 ` Pavel Machek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox