From d89c3b598b2d596e7a8b9a8d2478c142c8cd76a0 Mon Sep 17 00:00:00 2001 From: Dan Kalowsky Date: Fri, 23 Oct 2015 10:33:46 -0700 Subject: [PATCH] checkpatch: warning - space_before_tab Change-Id: I8d36cdcdd1822cafa7f53f8b8a8788992b0703e3 Signed-off-by: Dan Kalowsky --- arch/x86/core/float.c | 8 ++++---- drivers/pci/pci.c | 6 +++--- include/uart.h | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/arch/x86/core/float.c b/arch/x86/core/float.c index 243476eb5cb..b25f745fb3d 100644 --- a/arch/x86/core/float.c +++ b/arch/x86/core/float.c @@ -36,10 +36,10 @@ * The following APIs are provided to allow floating point resource sharing to * be enabled or disabled at run-time: * - * void fiber_float_enable (nano_thread_id_t thread_id, unsigned int options) - * void task_float_enable (nano_thread_id_t thread_id, unsigned int options) - * void fiber_float_disable (nano_thread_id_t thread_id) - * void task_float_disable (nano_thread_id_t thread_id) + * void fiber_float_enable (nano_thread_id_t thread_id, unsigned int options) + * void task_float_enable (nano_thread_id_t thread_id, unsigned int options) + * void fiber_float_disable (nano_thread_id_t thread_id) + * void task_float_disable (nano_thread_id_t thread_id) * * The 'options' parameter is used to specify what non-integer capabilities are * being used. The same options accepted by fiber_fiber_start() are used in the diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index b9bc90e6936..aa00506e269 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -45,14 +45,14 @@ * * EXAMPLE * struct pci_dev_info info = { - * .class = PCI_CLASS_COMM_CTLR + * .class = PCI_CLASS_COMM_CTLR * }; * * pci_bus_scan_init(); * * while (pci_bus_scan(&info) { - * // do something with "info" which holds a valid result, i.e. some - * // device information matching the PCI class PCI_CLASS_COMM_CTLR + * // do something with "info" which holds a valid result, i.e. some + * // device information matching the PCI class PCI_CLASS_COMM_CTLR * } * * INTERNALS diff --git a/include/uart.h b/include/uart.h index b8bc9f34066..ef65939e724 100644 --- a/include/uart.h +++ b/include/uart.h @@ -131,7 +131,7 @@ static inline void uart_init(struct device *dev, * @param p_char Pointer to character * * @return 0 if a character arrived, -1 if the input buffer if empty, - * -DEV_INVALID_OP if operation not supported. + * -DEV_INVALID_OP if operation not supported. */ static inline int uart_poll_in(struct device *dev, unsigned char *p_char) {