mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +00:00
mmc: Use byte array for multipliers
We don't need an int since no value is over 80. This saves a small amount of SPL space (about 44 bytes). Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
9cf7b1a74c
commit
61fe076f0f
1 changed files with 1 additions and 1 deletions
|
@ -984,7 +984,7 @@ static const int fbase[] = {
|
||||||
/* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice
|
/* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice
|
||||||
* to platforms without floating point.
|
* to platforms without floating point.
|
||||||
*/
|
*/
|
||||||
static const int multipliers[] = {
|
static const u8 multipliers[] = {
|
||||||
0, /* reserved */
|
0, /* reserved */
|
||||||
10,
|
10,
|
||||||
12,
|
12,
|
||||||
|
|
Loading…
Add table
Reference in a new issue