mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-18 05:21:56 +00:00
Updating micro kernel functions to follow a consistent naming convention. Part of that process is the removal of camelCase naming conventions for the preferred_underscore_method. Change accomplished with the following script: #!/bin/bash echo "Searching for ${1} to replace with ${2}" echo "Checking C, CPP, H, HPP, and s files..." find . -type f \( -iname \*.[ch] -o -iname \*.[ch]pp -o -iname \*.s \) \ -not \( -path host/src/genIdt -prune \) \ -not \( -path host/src/gen_tables -prune \) \ -print | xargs sed -i "s/"${1}"/"${2}"/g" echo "Checking KCONF, LST, and PY files..." find . -type f \( -iname \*.lst -o -iname \*.kconf -o -iname \*.py \) \ -not \( -path host/src/genIdt -prune \) \ -not \( -path host/src/gen_tables -prune \) \ -print | xargs sed -i "s/"${1}"/"${2}"/g" Change-Id: I4a3755e77038eccbd31f8247cb230052dd3edccf Signed-off-by: Dan Kalowsky <daniel.kalowsky@intel.com> |
||
---|---|---|
.. | ||
ch_addit.c | ||
ch_buff.c | ||
ch_buffm.c | ||
InitChan.c | ||
K_Ch_Mvd.c | ||
K_Ch_RO.c | ||
K_Ch_WO.c | ||
K_Ch_WR.c | ||
K_ChGAck.c | ||
K_ChGReq.c | ||
K_ChGRpl.c | ||
K_ChGTmo.c | ||
K_ChPAck.c | ||
K_ChPReq.c | ||
K_ChProc.c | ||
K_ChPRpl.c | ||
K_ChPTmo.c | ||
KS_Chan.c | ||
KS_ChGet.c | ||
KS_ChPtA.c | ||
KS_ChPut.c |