diff options
author | Dave Barach <dave@barachs.net> | 2016-08-08 09:51:21 -0400 |
---|---|---|
committer | Keith Burns <alagalah@gmail.com> | 2016-08-08 15:25:14 +0000 |
commit | ba868bb7898edc46ad5f8cd4925af6c8b92e7c89 (patch) | |
tree | a6f4092a3373e0a8d4f4a67da6e60f78331fe37f /build-root/emacs-lisp/fix-coding-style.el | |
parent | da62e1a1d84728094c427a4a7ec03e76e2df988c (diff) |
VPP-311 Coding standards cleanup for vnet/vnet/*.[ch]
Change-Id: I08ed983f594072bc8c72202e77205a7789eea599
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'build-root/emacs-lisp/fix-coding-style.el')
-rwxr-xr-x | build-root/emacs-lisp/fix-coding-style.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build-root/emacs-lisp/fix-coding-style.el b/build-root/emacs-lisp/fix-coding-style.el index 3b5ff561af5..3c927970104 100755 --- a/build-root/emacs-lisp/fix-coding-style.el +++ b/build-root/emacs-lisp/fix-coding-style.el @@ -74,6 +74,12 @@ (defun fix-reply-macro2 () (interactive) (fix-initializer "REPLY_MACRO2 *(")) +(defun fix-vnet-device-class () (interactive) + (fix-initializer "VNET_DEVICE_CLASS *(")) + +(defun fix-vnet-hw-interface-class () (interactive) + (fix-initializer "VNET_HW_INTERFACE_CLASS *(")) + ;; Driver routine which runs the set of functions ;; defined above, as well as the bottom boilerplate function @@ -90,6 +96,8 @@ (fix-vlib-cli-command) (fix-vlib-register-node) (fix-reply-macro2) + (fix-vnet-device-class) + (fix-vnet-hw-interface-class) (insert-style-boilerplate)) |