diff mbox series

netfilter: Clean up errors in nf_conntrack_h323_asn1.h

Message ID 33d535ba.863.18ad54575ed.Coremail.chenguohua@jari.cn
State Deferred, archived
Headers show
Series netfilter: Clean up errors in nf_conntrack_h323_asn1.h | expand

Commit Message

chenguohua@jari.cn Sept. 27, 2023, 6:13 a.m. UTC
Fix the following errors reported by checkpatch:

ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: GuoHua Cheng <chenguohua@jari.cn>
---
 include/linux/netfilter/nf_conntrack_h323_asn1.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Florian Westphal Oct. 8, 2023, 12:29 p.m. UTC | #1
chenguohua@jari.cn <chenguohua@jari.cn> wrote:
> Fix the following errors reported by checkpatch:
> 
> ERROR: "foo * bar" should be "foo *bar"

Running "checkpatch -f" for all nf related files results
in a myriad of "warnings". I don't think there is a good
reason to "fix" them.

checkpatch is good for new patch submissions, but I
do not think its worth it to adjust all the existing files.

Sorry.
diff mbox series

Patch

diff --git a/include/linux/netfilter/nf_conntrack_h323_asn1.h b/include/linux/netfilter/nf_conntrack_h323_asn1.h
index bd6797f823b2..514da3e8c8a8 100644
--- a/include/linux/netfilter/nf_conntrack_h323_asn1.h
+++ b/include/linux/netfilter/nf_conntrack_h323_asn1.h
@@ -88,8 +88,8 @@  typedef struct {
  * Decode Functions
  ****************************************************************************/
 
-int DecodeRasMessage(unsigned char *buf, size_t sz, RasMessage * ras);
-int DecodeQ931(unsigned char *buf, size_t sz, Q931 * q931);
+int DecodeRasMessage(unsigned char *buf, size_t sz, RasMessage *ras);
+int DecodeQ931(unsigned char *buf, size_t sz, Q931 *q931);
 int DecodeMultimediaSystemControlMessage(unsigned char *buf, size_t sz,
 					 MultimediaSystemControlMessage *
 					 mscm);