On Thu, Jul 26, 2007 at 06:50:44PM +0100, Alan Cox wrote:
> -    [4] __initdata = {{0, IRQ_AUTO}, {0, IRQ_AUTO},
> -        {0 ,IRQ_AUTO}, {0, IRQ_AUTO}};
> +[4] __initdata = { {
> +0, IRQ_AUTO}, {
> +0, IRQ_AUTO}, {
> +0, IRQ_AUTO}, {
> +0, IRQ_AUTO}};
>  #endif

A bit bizarre.  I'd expect something more like:
[4] __initdata = {
        { 0, IRQ_AUTO },
        { 0, IRQ_AUTO },
        { 0, IRQ_AUTO },
        { 0, IRQ_AUTO }
};

>  } bases[] __initdata = {
> -    { 0xcc000, 0}, { 0xc8000, 0}, { 0xdc000, 0}, { 0xd8000, 0}
> +     {
> +     0xcc000, 0}, {
> +     0xc8000, 0}, {
> +     0xdc000, 0}, {
> +     0xd8000, 0}
>  };

Similarly.

>  } signatures[] __initdata = {
> -{"TSROM: SCSI BIOS, Version 1.12", 0x36},
> -};
> +     {
> +"TSROM: SCSI BIOS, Version 1.12", 0x36},};
>  

And again.

-- 
"Bill, look, we understand that you're interested in selling us this
operating system, but compare it to ours.  We can't possibly take such
a retrograde step."
-
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to