diff mbox

[RFC,9/9] irda: Fix irda_skb_cb size

Message ID 20081215015904.915013041@sortiz.org
State RFC, archived
Delegated to: David Miller
Headers show

Commit Message

Samuel Ortiz Dec. 15, 2008, 1:57 a.m. UTC
Since we're stuffing an irda_skb_cb structure in front of the skb->data,
having sizeof(irda_skb_cb) as a multiple of 4 would be a lot nicer.

Signed-off-by: Samuel Ortiz <samuel@sortiz.org>
---
 include/net/irda/irda_device.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff mbox

Patch

diff --git a/include/net/irda/irda_device.h b/include/net/irda/irda_device.h
index 28c690c..71c07ce 100644
--- a/include/net/irda/irda_device.h
+++ b/include/net/irda/irda_device.h
@@ -146,7 +146,7 @@  struct irda_skb_cb {
 	void    *context;    /* May be used by drivers */
 	void    (*destructor)(struct sk_buff *skb); /* Used for flow control */
 	__u16   xbofs_delay; /* Number of xbofs used for generating the mtt */
-	__u8    line;        /* Used by IrCOMM in IrLPT mode */
+	__u32   line;        /* Used by IrCOMM in IrLPT mode */
 };
 
 /* Chip specific info */