diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-09-06 22:17:38 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-09-23 17:53:53 -0400 |
commit | 63a7578e4e7dc906e75b0bec5a2f3fe41c3720f4 (patch) | |
tree | 3c8e952ed36bd39aa138f5edf476e17d73fbea63 /board | |
parent | 7dc0789579b17859c61c085e4562b7985f05cc4d (diff) | |
download | u-boot-63a7578e4e7dc906e75b0bec5a2f3fe41c3720f4.zip u-boot-63a7578e4e7dc906e75b0bec5a2f3fe41c3720f4.tar.gz u-boot-63a7578e4e7dc906e75b0bec5a2f3fe41c3720f4.tar.bz2 |
arch, board: squash lines for immediate return
Remove unneeded variables and assignments.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Minkyu Kang <mk7.kang@samsung.com>
Reviewed-by: Angelo Dureghello <angelo@sysam.it>
Diffstat (limited to 'board')
-rw-r--r-- | board/amcc/bamboo/bamboo.c | 6 | ||||
-rw-r--r-- | board/amcc/bubinga/bubinga.c | 5 | ||||
-rw-r--r-- | board/amcc/canyonlands/canyonlands.c | 6 | ||||
-rw-r--r-- | board/corscience/tricorder/tricorder-eeprom.c | 20 | ||||
-rw-r--r-- | board/freescale/common/zm7300.c | 4 | ||||
-rw-r--r-- | board/samsung/goni/goni.c | 8 | ||||
-rw-r--r-- | board/ti/omap5_uevm/evm.c | 5 |
7 files changed, 11 insertions, 43 deletions
diff --git a/board/amcc/bamboo/bamboo.c b/board/amcc/bamboo/bamboo.c index c8d0963..2838f9a 100644 --- a/board/amcc/bamboo/bamboo.c +++ b/board/amcc/bamboo/bamboo.c @@ -438,11 +438,7 @@ int checkboard(void) phys_size_t initdram (int board_type) { - long dram_size; - - dram_size = spd_sdram(); - - return dram_size; + return spd_sdram(); } /*----------------------------------------------------------------------------+ diff --git a/board/amcc/bubinga/bubinga.c b/board/amcc/bubinga/bubinga.c index 5c1e071..9043de6 100644 --- a/board/amcc/bubinga/bubinga.c +++ b/board/amcc/bubinga/bubinga.c @@ -57,8 +57,5 @@ int checkboard(void) ------------------------------------------------------------------------- */ phys_size_t initdram(int board_type) { - long int ret; - - ret = spd_sdram(); - return ret; + return spd_sdram(); } diff --git a/board/amcc/canyonlands/canyonlands.c b/board/amcc/canyonlands/canyonlands.c index dc2e3ba..80b7739 100644 --- a/board/amcc/canyonlands/canyonlands.c +++ b/board/amcc/canyonlands/canyonlands.c @@ -63,11 +63,7 @@ u32 ddr_clktr(u32 default_val) { */ static inline int board_fpga_read(int offset) { - int data; - - data = in_8((void *)(CONFIG_SYS_FPGA_BASE + offset)); - - return data; + return in_8((void *)(CONFIG_SYS_FPGA_BASE + offset)); } static inline void board_fpga_write(int offset, int data) diff --git a/board/corscience/tricorder/tricorder-eeprom.c b/board/corscience/tricorder/tricorder-eeprom.c index 340a009..aeacd6a 100644 --- a/board/corscience/tricorder/tricorder-eeprom.c +++ b/board/corscience/tricorder/tricorder-eeprom.c @@ -190,13 +190,8 @@ int do_tricorder_eeprom(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) if (argc == 3) { ulong dev_addr = simple_strtoul(argv[2], NULL, 16); - if (strcmp(argv[1], "read") == 0) { - int rcode; - - rcode = tricorder_eeprom_read(dev_addr); - - return rcode; - } + if (strcmp(argv[1], "read") == 0) + return tricorder_eeprom_read(dev_addr); } else if (argc == 6 || argc == 7) { ulong dev_addr = simple_strtoul(argv[2], NULL, 16); char *name = argv[3]; @@ -207,14 +202,9 @@ int do_tricorder_eeprom(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) if (argc == 7) interface = argv[6]; - if (strcmp(argv[1], "write") == 0) { - int rcode; - - rcode = tricorder_eeprom_write(dev_addr, name, version, - serial, interface); - - return rcode; - } + if (strcmp(argv[1], "write") == 0) + return tricorder_eeprom_write(dev_addr, name, version, + serial, interface); } return CMD_RET_USAGE; diff --git a/board/freescale/common/zm7300.c b/board/freescale/common/zm7300.c index be5953a..a6c3e69 100644 --- a/board/freescale/common/zm7300.c +++ b/board/freescale/common/zm7300.c @@ -140,9 +140,7 @@ int dpm_wrp(u8 r, u8 d) /* Uses the DPM command RRP */ u8 zm_read(uchar reg) { - u8 d; - d = dpm_rrp(reg); - return d; + return dpm_rrp(reg); } /* ZM_write -- diff --git a/board/samsung/goni/goni.c b/board/samsung/goni/goni.c index 1600568..e8329bb 100644 --- a/board/samsung/goni/goni.c +++ b/board/samsung/goni/goni.c @@ -45,17 +45,11 @@ void i2c_init_board(void) int power_init_board(void) { - int ret; - /* * For PMIC the I2C bus is named as I2C5, but it is connected * to logical I2C adapter 0 */ - ret = pmic_init(I2C_0); - if (ret) - return ret; - - return 0; + return pmic_init(I2C_0); } int dram_init(void) diff --git a/board/ti/omap5_uevm/evm.c b/board/ti/omap5_uevm/evm.c index 50da410..b5d5ba9 100644 --- a/board/ti/omap5_uevm/evm.c +++ b/board/ti/omap5_uevm/evm.c @@ -245,10 +245,7 @@ int ehci_hcd_init(int index, enum usb_init_type init, int ehci_hcd_stop(void) { - int ret; - - ret = omap_ehci_hcd_stop(); - return ret; + return omap_ehci_hcd_stop(); } void usb_hub_reset_devices(int port) |