From patchwork Mon Dec 15 01:57:38 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [RFC,9/9] irda: Fix irda_skb_cb size From: Samuel Ortiz X-Patchwork-Id: 13971 Message-Id: <20081215015904.915013041@sortiz.org> To: "David S. Miller" Cc: netdev@vger.kernel.org, irda-users@lists.sourceforge.net Date: Mon, 15 Dec 2008 02:57:38 +0100 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 --- include/net/irda/irda_device.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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 */