diff options
| author | Xiang W <[email protected]> | 2022-10-31 19:21:44 +0800 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2022-11-14 22:02:33 +0530 |
| commit | 85cf56c159f6c955bf3616271cb1ce9c946bc9ad (patch) | |
| tree | 440f874df0275ada2294ebc6634007ea697f9865 | |
| parent | 22f38ee6c658a660083aa45c4ec6c72f66a17260 (diff) | |
lib: utils/fdt: Remove redundant code
uart->reg_offset and uart->reg_io_width are only used on uart8250 and
not required on other platforms. Remove for sifive and gaisler.
Signed-off-by: Xiang W <[email protected]>
Reviewed-by: Atish Patra <[email protected]>
Reviewed-by: Anup Patel <[email protected]>
| -rw-r--r-- | lib/utils/fdt/fdt_helper.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/utils/fdt/fdt_helper.c b/lib/utils/fdt/fdt_helper.c index d390436c..cdd0b35a 100644 --- a/lib/utils/fdt/fdt_helper.c +++ b/lib/utils/fdt/fdt_helper.c @@ -25,10 +25,6 @@ #define DEFAULT_SIFIVE_UART_FREQ 0 #define DEFAULT_SIFIVE_UART_BAUD 115200 -#define DEFAULT_SIFIVE_UART_REG_SHIFT 0 -#define DEFAULT_SIFIVE_UART_REG_IO_WIDTH 4 - -#define DEFAULT_GAISLER_UART_REG_IO_WIDTH 4 #define DEFAULT_SHAKTI_UART_FREQ 50000000 #define DEFAULT_SHAKTI_UART_BAUD 115200 @@ -363,10 +359,6 @@ int fdt_parse_gaisler_uart_node(void *fdt, int nodeoffset, if (rc) return rc; - /* For Gaisler APBUART, the reg-shift and reg-io-width are fixed .*/ - uart->reg_shift = DEFAULT_UART_REG_SHIFT; - uart->reg_io_width = DEFAULT_GAISLER_UART_REG_IO_WIDTH; - return 0; } @@ -394,10 +386,6 @@ int fdt_parse_sifive_uart_node(void *fdt, int nodeoffset, if (rc) return rc; - /* For SiFive UART, the reg-shift and reg-io-width are fixed .*/ - uart->reg_shift = DEFAULT_SIFIVE_UART_REG_SHIFT; - uart->reg_io_width = DEFAULT_SIFIVE_UART_REG_IO_WIDTH; - return 0; } |
