mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00: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:
parent
63a7578e4e
commit
a4ca3799c2
6 changed files with 9 additions and 38 deletions
|
@ -108,22 +108,14 @@ static unsigned int byte40_table_ps[8] = {
|
|||
static unsigned int
|
||||
compute_trfc_ps_from_spd(unsigned char trctrfc_ext, unsigned char trfc)
|
||||
{
|
||||
unsigned int trfc_ps;
|
||||
|
||||
trfc_ps = (((trctrfc_ext & 0x1) * 256) + trfc) * 1000
|
||||
return ((trctrfc_ext & 0x1) * 256 + trfc) * 1000
|
||||
+ byte40_table_ps[(trctrfc_ext >> 1) & 0x7];
|
||||
|
||||
return trfc_ps;
|
||||
}
|
||||
|
||||
static unsigned int
|
||||
compute_trc_ps_from_spd(unsigned char trctrfc_ext, unsigned char trc)
|
||||
{
|
||||
unsigned int trc_ps;
|
||||
|
||||
trc_ps = trc * 1000 + byte40_table_ps[(trctrfc_ext >> 4) & 0x7];
|
||||
|
||||
return trc_ps;
|
||||
return trc * 1000 + byte40_table_ps[(trctrfc_ext >> 4) & 0x7];
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue