forked from Mirrors/opensbi
		
	all: Annotate some tables to have clang-format leave them alone
One of the shortcomings of clang-format is that it doesn't allow for aligned define tables, which is used for a number of constants. Add annotation to disable the automatic formatting where needed. Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
		
				
					committed by
					
						
						Anup Patel
					
				
			
			
				
	
			
			
			
						parent
						
							97fb8c0e3b
						
					
				
				
					commit
					fbf986ac2a
				
			@@ -11,6 +11,8 @@
 | 
			
		||||
#include <sbi/sbi_console.h>
 | 
			
		||||
#include <plat/serial/sifive-uart.h>
 | 
			
		||||
 | 
			
		||||
/* clang-format off */
 | 
			
		||||
 | 
			
		||||
#define UART_REG_TXFIFO		0
 | 
			
		||||
#define UART_REG_RXFIFO		1
 | 
			
		||||
#define UART_REG_TXCTRL		2
 | 
			
		||||
@@ -25,6 +27,8 @@
 | 
			
		||||
#define UART_TXCTRL_TXEN	0x1
 | 
			
		||||
#define UART_RXCTRL_RXEN	0x1
 | 
			
		||||
 | 
			
		||||
/* clang-format on */
 | 
			
		||||
 | 
			
		||||
static volatile void *uart_base;
 | 
			
		||||
static u32 uart_in_freq;
 | 
			
		||||
static u32 uart_baudrate;
 | 
			
		||||
 
 | 
			
		||||
@@ -10,6 +10,8 @@
 | 
			
		||||
#include <sbi/riscv_io.h>
 | 
			
		||||
#include <plat/serial/uart8250.h>
 | 
			
		||||
 | 
			
		||||
/* clang-format off */
 | 
			
		||||
 | 
			
		||||
#define UART_RBR_OFFSET		0	/* In:  Recieve Buffer Register */
 | 
			
		||||
#define UART_THR_OFFSET		0	/* Out: Transmitter Holding Register */
 | 
			
		||||
#define UART_DLL_OFFSET		0	/* Out: Divisor Latch Low */
 | 
			
		||||
@@ -34,6 +36,8 @@
 | 
			
		||||
#define UART_LSR_DR		0x01    /* Receiver data ready */
 | 
			
		||||
#define UART_LSR_BRK_ERROR_BITS	0x1E    /* BI, FE, PE, OE bits */
 | 
			
		||||
 | 
			
		||||
/* clang-format on */
 | 
			
		||||
 | 
			
		||||
static volatile void *uart8250_base;
 | 
			
		||||
static u32 uart8250_in_freq;
 | 
			
		||||
static u32 uart8250_baudrate;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user