diff mbox

Protect if_phonet.h against multiple inclusions.

Message ID 1222847858-16706-1-git-send-email-remi.denis-courmont@nokia.com
State Accepted, archived
Headers show

Commit Message

RĂ©mi Denis-Courmont Oct. 1, 2008, 7:57 a.m. UTC
---
 include/linux/if_phonet.h |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

Comments

David Miller Oct. 1, 2008, 8:32 a.m. UTC | #1
From: Remi Denis-Courmont <remi.denis-courmont@nokia.com>
Date: Wed,  1 Oct 2008 10:57:38 +0300

> ---
>  include/linux/if_phonet.h |   11 ++++++-----
>  1 files changed, 6 insertions(+), 5 deletions(-)

Applied thanks.

Please provide a proper Signed-off-by line in the future,
even for trivial patches such as this one.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/include/linux/if_phonet.h b/include/linux/if_phonet.h
index 7e98921..d70034b 100644
--- a/include/linux/if_phonet.h
+++ b/include/linux/if_phonet.h
@@ -5,14 +5,15 @@ 
  *
  * Copyright (C) 2008 Nokia Corporation. All rights reserved.
  */
+#ifndef LINUX_IF_PHONET_H
+#define LINUX_IF_PHONET_H
 
-#define PHONET_HEADER_LEN	8	/* Phonet header length */
-
-#define PHONET_MIN_MTU		6
-/* 6 bytes header + 65535 bytes payload */
-#define PHONET_MAX_MTU		65541
+#define PHONET_MIN_MTU		6	/* pn_length = 0 */
+#define PHONET_MAX_MTU		65541	/* pn_length = 0xffff */
 #define PHONET_DEV_MTU		PHONET_MAX_MTU
 
 #ifdef __KERNEL__
 extern struct header_ops phonet_header_ops;
 #endif
+
+#endif