[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>
This commit is contained in:
Matthew Wilcox 2006-03-28 11:03:44 -05:00 коммит произвёл James Bottomley
Родитель ab19d52bec
Коммит 76789f0176
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -472,7 +472,7 @@ static int sym_getpciclock (struct sym_hcb *np)
* calculations more simple. * calculations more simple.
*/ */
#define _5M 5000000 #define _5M 5000000
static u32 div_10M[] = {2*_5M, 3*_5M, 4*_5M, 6*_5M, 8*_5M, 12*_5M, 16*_5M}; static const u32 div_10M[] = {2*_5M, 3*_5M, 4*_5M, 6*_5M, 8*_5M, 12*_5M, 16*_5M};
/* /*
* Get clock factor and sync divisor for a given * Get clock factor and sync divisor for a given