lkml.org 
[lkml]   [2004]   [Jan]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: 2.6.1-mm4
Andrew Morton wrote:
> Fabian Fenaut <fabian.fenaut@free.fr> wrote:
>
>>I got an error compiling -mm4 :
>>
>> [...]
>> CC [M] drivers/media/video/ir-kbd-gpio.o
>> drivers/media/video/ir-kbd-gpio.c:185: unknown field `name' specified in
>> initializer
>
> You must be using an elderly gcc.

2.95.4 from debian stable

> diff -puN drivers/media/video/ir-kbd-gpio.c~ir-kbd-gpio-build-fix drivers/media/video/ir-kbd-gpio.c
> --- 25/drivers/media/video/ir-kbd-gpio.c~ir-kbd-gpio-build-fix 2004-01-16 09:01:59.000000000 -0800
> +++ 25-akpm/drivers/media/video/ir-kbd-gpio.c 2004-01-16 09:02:17.000000000 -0800
> @@ -182,9 +182,11 @@ static int ir_probe(struct device *dev);
> static int ir_remove(struct device *dev);
>
> static struct bttv_sub_driver driver = {
> - .drv.name = DEVNAME,
> - .drv.probe = ir_probe,
> - .drv.remove = ir_remove,
> + .drv = {
> + .name = DEVNAME,
> + .probe = ir_probe,
> + .remove = ir_remove,
> + },
> .gpio_irq = ir_irq,
> };

it works, thanks.

Fabian

-
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/

\
 
 \ /
  Last update: 2005-03-22 14:00    [from the cache]
©2003-2011 Jasper Spaans