• Linus Torvalds's avatar
    [PATCH] Fix CONFIG_PCMCIA_WL3501 with older compilers · acbda551
    Linus Torvalds authored
    We only support named initializers with one leval of naming, ie that
    
    	.foo.bar = baz,
    
    thing should go.  gcc-2.95 doesn't handle it (neither does sparse, I
    think).
    
    Replace such initializers with
    
    	.foo = {
    		.bar = baz,
    	},
    
    instead.
    acbda551
wl3501_cs.c 64.4 KB