src/soc/ti: Remove unnecessary space after casts

Change-Id: If4564abf060410726b0b245ba002a35ca9d30769
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69808
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/src/soc/ti/am335x/uart.c b/src/soc/ti/am335x/uart.c
index b19ba96..0543475 100644
--- a/src/soc/ti/am335x/uart.c
+++ b/src/soc/ti/am335x/uart.c
@@ -149,7 +149,7 @@
 void uart_init(unsigned int idx)
 {
 	struct am335x_uart *uart = uart_platform_baseptr(idx);
-	uint16_t div = (uint16_t) uart_baudrate_divisor(
+	uint16_t div = (uint16_t)uart_baudrate_divisor(
 		get_uart_baudrate(), uart_platform_refclk(), 16);
 	am335x_uart_init(uart, div);
 }