From 47786cdb0e74ed86f53e12b19725437f9e41c56d Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Mon, 24 Nov 2008 01:06:22 +0100 Subject: [PATCH 9/9] irda: Fix irda_skb_cb size 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 */ -- 1.6.0.4.766.g6fc4a.dirty