zephyr/include/microkernel
Yonattan Louise c41d243602 Fix checkpatch issue - WARNING:LEADING_SPACE
Changing each four whitespaces for one tab at the beginning of the
lines that the checkpatch script marks as having the warning LEADING_SPACE.

Change accomplished with the following script:

	#!/bin/bash
	checkpatch_script="$VXMICRO_BASE/scripts/checkpatch.pl --mailback --no-tree -f --emacs --summary-file --show-types --ignore BRACES,PRINTK_WITHOUT_KERN_LEVEL,SPLIT_STRING --max-line-length=100 "
	for file in $(find ./ -name "*.[ch]" ! -path "./scripts/*" ! -path "./host/src/wrsconfig/*");
	do
		for line in $(eval $checkpatch_script $file | grep "WARNING:LEADING_SPACE" | cut -d":" -f2)
		do
			sed -i -r -e ''$line' {s/^    /\t/; s/^([\t]*)    /\1\t/g}' $file;
		done;
	done;

Change-Id: I999e59710f52098ad3ec336b99c05356215cc671
Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com>
2016-02-05 20:13:54 -05:00
..
chan.h Renaming InitPipe to _pipe_init 2016-02-05 20:13:51 -05:00
cmdPkt.h Renaming cmdPktGet to _cmd_pkt_get 2016-02-05 20:13:51 -05:00
entries.h Rename _k_node_workload_get() to _k_workload_get() 2016-02-05 20:13:52 -05:00
event_api_export.h Allow events to support tickless kernel 2016-02-05 20:13:49 -05:00
event.h First commit 2015-04-10 16:44:37 -07:00
fifo_api_export.h Convert LITE references to TICKLESS_KERNEL references 2016-02-05 20:13:49 -05:00
fifo.h First commit 2015-04-10 16:44:37 -07:00
k_chstr.h Remove private routine declarations from k_chstr.h 2016-02-05 20:13:42 -05:00
k_struct.h Change _nano_ticks to 64-bit 2016-02-05 20:13:52 -05:00
k_types.h Removing _k_this_node 2016-02-05 20:13:51 -05:00
mail_api_export.h Convert LITE references to TICKLESS_KERNEL references 2016-02-05 20:13:49 -05:00
mail.h Fix checkpatch issue - WARNING:LEADING_SPACE 2016-02-05 20:13:54 -05:00
mmap.h Convert LITE references to TICKLESS_KERNEL references 2016-02-05 20:13:49 -05:00
mutex_api_export.h Convert LITE references to TICKLESS_KERNEL references 2016-02-05 20:13:49 -05:00
mutex.h First commit 2015-04-10 16:44:37 -07:00
pool.h Allow memory pools to support tickless kernel 2016-02-05 20:13:49 -05:00
sema_api_export.h Convert LITE references to TICKLESS_KERNEL references 2016-02-05 20:13:49 -05:00
sema.h First commit 2015-04-10 16:44:37 -07:00
task_api_export.h Renaming GROUP_TASK_ macros to TASK_GROUP_ 2016-02-05 20:13:51 -05:00
task_irq_api_export.h Allow task IRQ code to support tickless kernel 2016-02-05 20:13:49 -05:00
task_irq.h First commit 2015-04-10 16:44:37 -07:00
task.h Removing _k_this_node 2016-02-05 20:13:51 -05:00
ticks.h Fix checkpatch issue - WARNING:LEADING_SPACE 2016-02-05 20:13:54 -05:00