soc: Rename uart_dat8 to uart0_dat8
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Sat, 13 Jun 2020 12:05:39 +0000 (22:05 +1000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Sun, 14 Jun 2020 04:00:37 +0000 (14:00 +1000)
Just for consistency. Will come in handy if we ever add a second one

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
soc.vhdl

index eed5fe22d2ce239dccfb5f047daf91b4fda7bdcd..2f9fe68cc19201e5d75c818e8cd1d3cc0b7727d0 100644 (file)
--- a/soc.vhdl
+++ b/soc.vhdl
@@ -117,7 +117,7 @@ architecture behaviour of soc is
     -- UART0 signals:
     signal wb_uart0_in   : wb_io_master_out;
     signal wb_uart0_out  : wb_io_slave_out;
-    signal uart_dat8     : std_ulogic_vector(7 downto 0);
+    signal uart0_dat8    : std_ulogic_vector(7 downto 0);
 
     -- SPI Flash controller signals:
     signal wb_spiflash_in     : wb_io_master_out;
@@ -571,13 +571,13 @@ begin
            irq => int_level_in(0),
            wb_adr_in => wb_uart0_in.adr(11 downto 0),
            wb_dat_in => wb_uart0_in.dat(7 downto 0),
-           wb_dat_out => uart_dat8,
+           wb_dat_out => uart0_dat8,
            wb_cyc_in => wb_uart0_in.cyc,
            wb_stb_in => wb_uart0_in.stb,
            wb_we_in => wb_uart0_in.we,
            wb_ack_out => wb_uart0_out.ack
            );
-    wb_uart0_out.dat <= x"000000" & uart_dat8;
+    wb_uart0_out.dat <= x"000000" & uart0_dat8;
     wb_uart0_out.stall <= not wb_uart0_out.ack;
 
     spiflash_gen: if HAS_SPI_FLASH generate