Commit dce2551e authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds

[PATCH] Atari NCR5380 SCSI: bitops operate on long

Atari NCR5380 SCSI: bitops operate on long, not char.
Note: the preprocessor stuff just above checks for MAX_TAGS being a multiple of
32, so dividing by 32 is OK.
parent a3bd78b0
......@@ -315,7 +315,7 @@ static Scsi_Host_Template *the_template = NULL;
#endif
typedef struct {
char allocated[MAX_TAGS/8];
long allocated[MAX_TAGS/32];
int nr_allocated;
int queue_size;
} TAG_ALLOC;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment