zephyr/drivers/console
Johan Hedberg 5ad78034c9 drivers/console: Remove unnecessary indentation in uart_console_isr
Most of the uart_console_isr() function is heavily indented. We can
remove one level by converting:

	if (uart_irq_rx_ready(uart_console_dev)) {
		...
		...
	}

to:

	if (!uart_irq_rx_ready(uart_console_dev)) {
		continue;
	}

Change-Id: Ib2fe150490a8391de4001f29e4727431668853c4
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
2016-02-05 20:24:58 -05:00
..
console_handler_shell.c drivers/console: shell: Add custom prompt callback support 2016-02-05 20:24:58 -05:00
ipi_console_receiver.c checkpatch: error - open_brace 2016-02-05 20:24:31 -05:00
ipi_console_sender.c checkpatch: warning - block_comment_style 2016-02-05 20:24:33 -05:00
Kconfig uart_pipe: use device name instead of index 2016-02-05 20:24:56 -05:00
Makefile uart_pipe: use device name instead of index 2016-02-05 20:24:56 -05:00
ram_console.c init: Implement fine-grained initialization policy 2016-02-05 20:24:54 -05:00
uart_console_static_irq_stubs.S uart: check for MVIC when creating stubs 2016-02-05 20:24:57 -05:00
uart_console.c drivers/console: Remove unnecessary indentation in uart_console_isr 2016-02-05 20:24:58 -05:00
uart_pipe.c irq: removes priority parameter from IRQ_CONFIG macro 2016-02-05 20:24:57 -05:00