Skip to content
Snippets Groups Projects
Commit 5f837c2c authored by Mike Frysinger's avatar Mike Frysinger Committed by Andy Fleming
Browse files

mmc: constify & localize data


These local vars need not be writable nor exported.

Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
Signed-off-by: default avatarAndy Fleming <afleming@freescale.com>
parent 63fb5a7e
No related branches found
No related tags found
No related merge requests found
......@@ -548,7 +548,7 @@ retry_scr:
/* frequency bases */
/* divided by 10 to be nice to platforms without floating point */
int fbase[] = {
static const int fbase[] = {
10000,
100000,
1000000,
......@@ -558,7 +558,7 @@ int fbase[] = {
/* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice
* to platforms without floating point.
*/
int multipliers[] = {
static const int multipliers[] = {
0, /* reserved */
10,
12,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment