mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 14:41:39 +00:00
staging: sm750fb: initialize max_d to maximum D value of 6
max_d is not initialized and should be set to the largest D value of 6. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7d47383dcb
commit
f0e00da2db
@ -306,7 +306,7 @@ unsigned int calcPllValue(unsigned int request_orig, pll_value_t *pll)
|
||||
unsigned int input, request;
|
||||
unsigned int tmpClock, ret;
|
||||
const int max_OD = 3;
|
||||
int max_d;
|
||||
int max_d = 6;
|
||||
|
||||
if (getChipType() == SM750LE) {
|
||||
/* SM750LE don't have prgrammable PLL and M/N values to work on.
|
||||
|
Loading…
Reference in New Issue
Block a user