devtools: add git log checks for DBC, TOS and TTL

Message ID 20190129132703.28954-1-ferruh.yigit@intel.com (mailing list archive)
State Superseded, archived
Delegated to: Thomas Monjalon
Headers
Series devtools: add git log checks for DBC, TOS and TTL |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Ferruh Yigit Jan. 29, 2019, 1:27 p.m. UTC
  Add case check to DBC, TOS and TTL abbreviations.

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
 devtools/check-git-log.sh | 3 +++
 1 file changed, 3 insertions(+)
  

Comments

Thomas Monjalon Jan. 29, 2019, 1:49 p.m. UTC | #1
29/01/2019 14:27, Ferruh Yigit:
> Add case check to DBC, TOS and TTL abbreviations.

Do you mean DCB?
  
Ferruh Yigit Jan. 29, 2019, 1:56 p.m. UTC | #2
On 1/29/2019 1:49 PM, Thomas Monjalon wrote:
> 29/01/2019 14:27, Ferruh Yigit:
>> Add case check to DBC, TOS and TTL abbreviations.
> 
> Do you mean DCB?

Yes, fix sent.
  

Patch

diff --git a/devtools/check-git-log.sh b/devtools/check-git-log.sh
index d1c12049e..a905afc32 100755
--- a/devtools/check-git-log.sh
+++ b/devtools/check-git-log.sh
@@ -95,6 +95,7 @@  bad=$(echo "$headlines" | grep -E --color=always \
 	-e ':.*\<(Armv7|ARMv7|ArmV7|armV7|ARMV7)\>' \
 	-e ':.*\<(Armv8|ARMv8|ArmV8|armV8|ARMV8)\>' \
 	-e ':.*\<crc\>' \
+	-e ':.*\<dcb\>' \
 	-e ':.*\<dma\>' \
 	-e ':.*\<eeprom\>' \
 	-e ':.*\<freebsd\>' \
@@ -113,7 +114,9 @@  bad=$(echo "$headlines" | grep -E --color=always \
 	-e ':.*\<pmd\>' \
 	-e ':.*\<rss\>' \
 	-e ':.*\<sctp\>' \
+	-e ':.*\<tos\>' \
 	-e ':.*\<tso\>' \
+	-e ':.*\<ttl\>' \
 	-e ':.*\<udp\>' \
 	-e ':.*\<[Vv]lan\>' \
 	-e ':.*\<vdpa\>' \