exynos5xx0: rename local "main" variable
Change-Id: I9a454c88c65e4e70d351f1ec781e75ba400ceb29 Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/6664 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
This commit is contained in:
parent
5c715ac3c5
commit
905e6f2b56
|
@ -528,7 +528,7 @@ static int clock_calc_best_scalar(unsigned int main_scaler_bits,
|
||||||
|
|
||||||
int clock_set_rate(enum periph_id periph_id, unsigned int rate)
|
int clock_set_rate(enum periph_id periph_id, unsigned int rate)
|
||||||
{
|
{
|
||||||
int main;
|
int main_scalar;
|
||||||
unsigned int fine;
|
unsigned int fine;
|
||||||
|
|
||||||
switch (periph_id) {
|
switch (periph_id) {
|
||||||
|
@ -537,13 +537,13 @@ int clock_set_rate(enum periph_id periph_id, unsigned int rate)
|
||||||
case PERIPH_ID_SPI2:
|
case PERIPH_ID_SPI2:
|
||||||
case PERIPH_ID_SPI3:
|
case PERIPH_ID_SPI3:
|
||||||
case PERIPH_ID_SPI4:
|
case PERIPH_ID_SPI4:
|
||||||
main = clock_calc_best_scalar(4, 8, 400000000, rate, &fine);
|
main_scalar = clock_calc_best_scalar(4, 8, 400000000, rate, &fine);
|
||||||
if (main < 0) {
|
if (main_scalar < 0) {
|
||||||
printk(BIOS_DEBUG, "%s: Cannot set clock rate for periph %d",
|
printk(BIOS_DEBUG, "%s: Cannot set clock rate for periph %d",
|
||||||
__func__, periph_id);
|
__func__, periph_id);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
clock_ll_set_ratio(periph_id, main - 1);
|
clock_ll_set_ratio(periph_id, main_scalar - 1);
|
||||||
clock_ll_set_pre_ratio(periph_id, fine - 1);
|
clock_ll_set_pre_ratio(periph_id, fine - 1);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -492,7 +492,7 @@ static int clock_calc_best_scalar(unsigned int main_scaler_bits,
|
||||||
|
|
||||||
int clock_set_rate(enum periph_id periph_id, unsigned int rate)
|
int clock_set_rate(enum periph_id periph_id, unsigned int rate)
|
||||||
{
|
{
|
||||||
int main;
|
int main_scalar;
|
||||||
unsigned int fine;
|
unsigned int fine;
|
||||||
|
|
||||||
switch (periph_id) {
|
switch (periph_id) {
|
||||||
|
@ -501,13 +501,13 @@ int clock_set_rate(enum periph_id periph_id, unsigned int rate)
|
||||||
case PERIPH_ID_SPI2:
|
case PERIPH_ID_SPI2:
|
||||||
case PERIPH_ID_SPI3:
|
case PERIPH_ID_SPI3:
|
||||||
case PERIPH_ID_SPI4:
|
case PERIPH_ID_SPI4:
|
||||||
main = clock_calc_best_scalar(4, 8, 400000000, rate, &fine);
|
main_scalar = clock_calc_best_scalar(4, 8, 400000000, rate, &fine);
|
||||||
if (main < 0) {
|
if (main_scalar < 0) {
|
||||||
printk(BIOS_DEBUG, "%s: Cannot set clock rate for periph %d",
|
printk(BIOS_DEBUG, "%s: Cannot set clock rate for periph %d",
|
||||||
__func__, periph_id);
|
__func__, periph_id);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
clock_ll_set_ratio(periph_id, main - 1);
|
clock_ll_set_ratio(periph_id, main_scalar - 1);
|
||||||
clock_ll_set_pre_ratio(periph_id, fine - 1);
|
clock_ll_set_pre_ratio(periph_id, fine - 1);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue