summaryrefslogtreecommitdiff
path: root/board/ge/mx53ppd
diff options
context:
space:
mode:
authorDenis Zalevskiy <denis.zalevskiy@ge.com>2018-10-17 10:33:26 +0200
committerStefano Babic <sbabic@denx.de>2018-12-17 10:46:04 +0100
commit33a6c8d4e605311d59e45bc2a42fdc02d37254dd (patch)
treeb675ae6bcf8be5105418fe8d299055a67931154c /board/ge/mx53ppd
parent7f4269b24a90513a93c02b9de3f1b4504936d0ff (diff)
board: ge: Remove EEPROM bus param from read_vpd()
The bus is statically defined, so remove redundant parameters from read_vpd() for PPD and Bx50v3. Signed-off-by: Denis Zalevskiy <denis.zalevskiy@ge.com> Signed-off-by: Fabien Lahoudere <fabien.lahoudere@collabora.com>
Diffstat (limited to 'board/ge/mx53ppd')
-rw-r--r--board/ge/mx53ppd/mx53ppd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/ge/mx53ppd/mx53ppd.c b/board/ge/mx53ppd/mx53ppd.c
index cf278e8f47c..62137f6b28f 100644
--- a/board/ge/mx53ppd/mx53ppd.c
+++ b/board/ge/mx53ppd/mx53ppd.c
@@ -328,7 +328,7 @@ static void process_vpd(struct vpd_cache *vpd)
eth_env_set_enetaddr("ethaddr", vpd->mac1);
}
-static int read_vpd(uint eeprom_bus)
+static int read_vpd(void)
{
struct vpd_cache vpd;
int res;
@@ -336,7 +336,7 @@ static int read_vpd(uint eeprom_bus)
u8 *data;
unsigned int current_i2c_bus = i2c_get_bus_num();
- res = i2c_set_bus_num(eeprom_bus);
+ res = i2c_set_bus_num(VPD_EEPROM_BUS);
if (res < 0)
return res;
@@ -390,7 +390,7 @@ int board_late_init(void)
{
int res;
- read_vpd(VPD_EEPROM_BUS);
+ read_vpd();
res = clock_1GHz();
if (res != 0)