diff options
author | Matthew Wilcox <matthew@wil.cx> | 2006-03-28 11:03:44 -0500 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-04-13 11:13:23 -0400 |
commit | 76789f01768bb4cef706f4c9e7e2f3f4eb8c1431 (patch) | |
tree | 09c37d5e98657d476baccadc0f8dd36105db5f51 /drivers/scsi/sym53c8xx_2 | |
parent | ab19d52bec6c1b266228417b58ae6f36f3ea097c (diff) |
[SCSI] Mark div_10M array const
Patch below is one out of a large series to mark kernel data const when
possible, goal is to use .rodata and avoid false sharing
Signed-off-by: Arjan van de Ven <arjan@infradead.org>
Signed-off-by: Matthew Wilcox <matthew@wil.cx>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/sym53c8xx_2')
-rw-r--r-- | drivers/scsi/sym53c8xx_2/sym_hipd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sym53c8xx_2/sym_hipd.c b/drivers/scsi/sym53c8xx_2/sym_hipd.c index a95b262bbe89..b2ac482caae8 100644 --- a/drivers/scsi/sym53c8xx_2/sym_hipd.c +++ b/drivers/scsi/sym53c8xx_2/sym_hipd.c | |||
@@ -472,7 +472,7 @@ static int sym_getpciclock (struct sym_hcb *np) | |||
472 | * calculations more simple. | 472 | * calculations more simple. |
473 | */ | 473 | */ |
474 | #define _5M 5000000 | 474 | #define _5M 5000000 |
475 | static u32 div_10M[] = {2*_5M, 3*_5M, 4*_5M, 6*_5M, 8*_5M, 12*_5M, 16*_5M}; | 475 | static const u32 div_10M[] = {2*_5M, 3*_5M, 4*_5M, 6*_5M, 8*_5M, 12*_5M, 16*_5M}; |
476 | 476 | ||
477 | /* | 477 | /* |
478 | * Get clock factor and sync divisor for a given | 478 | * Get clock factor and sync divisor for a given |