Commit fc2adcfd37f6f1c32d246b5b43f83e38233358ae
Committed by
James Bottomley
1 parent
64624d4f46
Exists in
master
and in
7 other branches
[SCSI] aic7xxx: Fix firmware build
If a prefix is selected for flex, we should be using it everywhere. Signed-off-by: Hannes Reinecke <hare@suse.de> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff
drivers/scsi/aic7xxx/aicasm/aicasm_macro_scan.l
... | ... | @@ -66,6 +66,7 @@ |
66 | 66 | static char *string_buf_ptr; |
67 | 67 | static int parren_count; |
68 | 68 | static char buf[255]; |
69 | +int mmlineno; | |
69 | 70 | %} |
70 | 71 | |
71 | 72 | WORD [A-Za-z_][-A-Za-z_0-9]* |
... | ... | @@ -76,7 +77,7 @@ |
76 | 77 | |
77 | 78 | %% |
78 | 79 | \n { |
79 | - ++yylineno; | |
80 | + ++mmlineno; | |
80 | 81 | } |
81 | 82 | \r ; |
82 | 83 | <ARGLIST>{SPACE} ; |