Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[PATCH] aic7xxx_osm build fix

Fix a c99ism.

Cc: James Bottomley <James.Bottomley@steeleye.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Andrew Morton and committed by
Linus Torvalds
d9812896 558ac33e

+5 -2
+5 -2
drivers/scsi/aic7xxx/aic7xxx_osm.c
··· 659 659 ahc_lock(ahc, &flags); 660 660 targ = ahc->platform_data->targets[target_offset]; 661 661 if (targ == NULL) { 662 - targ = ahc_linux_alloc_target(ahc, starget->channel, starget->id); 663 - struct seeprom_config *sc = ahc->seep_config; 662 + struct seeprom_config *sc; 663 + 664 + targ = ahc_linux_alloc_target(ahc, starget->channel, 665 + starget->id); 666 + sc = ahc->seep_config; 664 667 if (targ == NULL) 665 668 goto out; 666 669