mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 08:44:41 +00:00 
			
		
		
		
	Blackfin Serial Driver: use BFIN_UART_NR_PORTS to help SIR driver in uart port.
Signed-off-by: Graf Yang <graf.yang@analog.com> Signed-off-by: Bryan Wu <cooloney@kernel.org>
This commit is contained in:
		
							parent
							
								
									1a3a4c7130
								
							
						
					
					
						commit
						2ade972996
					
				
					 1 changed files with 5 additions and 3 deletions
				
			
		|  | @ -151,7 +151,8 @@ void kgdb_put_debug_char(int chr) | |||
| { | ||||
| 	struct bfin_serial_port *uart; | ||||
| 	 | ||||
| 	if (CONFIG_KGDB_UART_PORT<0 || CONFIG_KGDB_UART_PORT>=NR_PORTS) | ||||
| 	if (CONFIG_KGDB_UART_PORT < 0 | ||||
| 		|| CONFIG_KGDB_UART_PORT >= BFIN_UART_NR_PORTS) | ||||
| 		uart = &bfin_serial_ports[0]; | ||||
| 	else | ||||
| 		uart = &bfin_serial_ports[CONFIG_KGDB_UART_PORT]; | ||||
|  | @ -173,7 +174,8 @@ int kgdb_get_debug_char(void) | |||
| 	struct bfin_serial_port *uart; | ||||
| 	unsigned char chr; | ||||
| 
 | ||||
| 	if (CONFIG_KGDB_UART_PORT<0 || CONFIG_KGDB_UART_PORT>=NR_PORTS) | ||||
| 	if (CONFIG_KGDB_UART_PORT < 0 | ||||
| 		|| CONFIG_KGDB_UART_PORT >= BFIN_UART_NR_PORTS) | ||||
| 		uart = &bfin_serial_ports[0]; | ||||
| 	else | ||||
| 		uart = &bfin_serial_ports[CONFIG_KGDB_UART_PORT]; | ||||
|  | @ -1193,7 +1195,7 @@ static struct uart_driver bfin_serial_reg = { | |||
| 	.dev_name		= BFIN_SERIAL_NAME, | ||||
| 	.major			= BFIN_SERIAL_MAJOR, | ||||
| 	.minor			= BFIN_SERIAL_MINOR, | ||||
| 	.nr			= NR_PORTS, | ||||
| 	.nr			= BFIN_UART_NR_PORTS, | ||||
| 	.cons			= BFIN_SERIAL_CONSOLE, | ||||
| }; | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Graf Yang
						Graf Yang