mirror of
https://xff.cz/git/u-boot/
synced 2025-09-03 17:52:07 +02:00
drivers: squash lines for immediate return
Remove unneeded variables and assignments. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
committed by
Tom Rini
parent
63a7578e4e
commit
a4ca3799c2
@@ -284,9 +284,8 @@ void scsi_low_level_init(int busdevfunc)
|
|||||||
*/
|
*/
|
||||||
unsigned long swap_script(unsigned long val)
|
unsigned long swap_script(unsigned long val)
|
||||||
{
|
{
|
||||||
unsigned long tmp;
|
return ((val >> 24) & 0xff) | ((val >> 8) & 0xff00) |
|
||||||
tmp = ((val>>24)&0xff) | ((val>>8)&0xff00) | ((val<<8)&0xff0000) | ((val<<24)&0xff000000);
|
((val << 8) & 0xff0000) | ((val << 24) & 0xff000000);
|
||||||
return tmp;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -108,22 +108,14 @@ static unsigned int byte40_table_ps[8] = {
|
|||||||
static unsigned int
|
static unsigned int
|
||||||
compute_trfc_ps_from_spd(unsigned char trctrfc_ext, unsigned char trfc)
|
compute_trfc_ps_from_spd(unsigned char trctrfc_ext, unsigned char trfc)
|
||||||
{
|
{
|
||||||
unsigned int trfc_ps;
|
return ((trctrfc_ext & 0x1) * 256 + trfc) * 1000
|
||||||
|
|
||||||
trfc_ps = (((trctrfc_ext & 0x1) * 256) + trfc) * 1000
|
|
||||||
+ byte40_table_ps[(trctrfc_ext >> 1) & 0x7];
|
+ byte40_table_ps[(trctrfc_ext >> 1) & 0x7];
|
||||||
|
|
||||||
return trfc_ps;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned int
|
static unsigned int
|
||||||
compute_trc_ps_from_spd(unsigned char trctrfc_ext, unsigned char trc)
|
compute_trc_ps_from_spd(unsigned char trctrfc_ext, unsigned char trc)
|
||||||
{
|
{
|
||||||
unsigned int trc_ps;
|
return trc * 1000 + byte40_table_ps[(trctrfc_ext >> 4) & 0x7];
|
||||||
|
|
||||||
trc_ps = trc * 1000 + byte40_table_ps[(trctrfc_ext >> 4) & 0x7];
|
|
||||||
|
|
||||||
return trc_ps;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -107,22 +107,14 @@ static unsigned int byte40_table_ps[8] = {
|
|||||||
static unsigned int
|
static unsigned int
|
||||||
compute_trfc_ps_from_spd(unsigned char trctrfc_ext, unsigned char trfc)
|
compute_trfc_ps_from_spd(unsigned char trctrfc_ext, unsigned char trfc)
|
||||||
{
|
{
|
||||||
unsigned int trfc_ps;
|
return (((trctrfc_ext & 0x1) * 256) + trfc) * 1000
|
||||||
|
|
||||||
trfc_ps = (((trctrfc_ext & 0x1) * 256) + trfc) * 1000
|
|
||||||
+ byte40_table_ps[(trctrfc_ext >> 1) & 0x7];
|
+ byte40_table_ps[(trctrfc_ext >> 1) & 0x7];
|
||||||
|
|
||||||
return trfc_ps;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned int
|
static unsigned int
|
||||||
compute_trc_ps_from_spd(unsigned char trctrfc_ext, unsigned char trc)
|
compute_trc_ps_from_spd(unsigned char trctrfc_ext, unsigned char trc)
|
||||||
{
|
{
|
||||||
unsigned int trc_ps;
|
return trc * 1000 + byte40_table_ps[(trctrfc_ext >> 4) & 0x7];
|
||||||
|
|
||||||
trc_ps = trc * 1000 + byte40_table_ps[(trctrfc_ext >> 4) & 0x7];
|
|
||||||
|
|
||||||
return trc_ps;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -706,11 +706,7 @@ int ddr3_tip_ext_write(u32 dev_num, u32 if_id, u32 reg_addr,
|
|||||||
|
|
||||||
int ddr3_silicon_pre_init(void)
|
int ddr3_silicon_pre_init(void)
|
||||||
{
|
{
|
||||||
int result;
|
return ddr3_silicon_init();
|
||||||
|
|
||||||
result = ddr3_silicon_init();
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int ddr3_post_run_alg(void)
|
int ddr3_post_run_alg(void)
|
||||||
|
@@ -217,13 +217,7 @@ int axp_set_sw(bool on)
|
|||||||
|
|
||||||
int axp_init(void)
|
int axp_init(void)
|
||||||
{
|
{
|
||||||
int ret;
|
return pmic_bus_init();
|
||||||
|
|
||||||
ret = pmic_bus_init();
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int do_poweroff(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
int do_poweroff(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||||||
|
@@ -127,10 +127,8 @@ void rtc_reset (void)
|
|||||||
|
|
||||||
static uchar rtc_read (uchar reg)
|
static uchar rtc_read (uchar reg)
|
||||||
{
|
{
|
||||||
uchar val;
|
return *(unsigned char *)
|
||||||
val = *(unsigned char *)
|
|
||||||
((CONFIG_SYS_NVRAM_BASE_ADDR + CONFIG_SYS_NVRAM_SIZE - 8) + reg);
|
((CONFIG_SYS_NVRAM_BASE_ADDR + CONFIG_SYS_NVRAM_SIZE - 8) + reg);
|
||||||
return val;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void rtc_write (uchar reg, uchar val)
|
static void rtc_write (uchar reg, uchar val)
|
||||||
|
Reference in New Issue
Block a user