diff options
| author | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-11 14:36:25 +0100 | 
|---|---|---|
| committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-11 14:36:25 +0100 | 
| commit | a8931ef380c92d121ae74ecfb03b2d63f72eea6f (patch) | |
| tree | 980fb6b019e11e6cb1ece55b7faff184721a8053 /drivers/media/dvb/dvb-core/dvb_net.c | |
| parent | 90574d0a4d4b73308ae54a2a57a4f3f1fa98e984 (diff) | |
| parent | e5a5816f7875207cb0a0a7032e39a4686c5e10a4 (diff) | |
| download | olio-linux-3.10-a8931ef380c92d121ae74ecfb03b2d63f72eea6f.tar.xz olio-linux-3.10-a8931ef380c92d121ae74ecfb03b2d63f72eea6f.zip  | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'drivers/media/dvb/dvb-core/dvb_net.c')
| -rw-r--r-- | drivers/media/dvb/dvb-core/dvb_net.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/media/dvb/dvb-core/dvb_net.c b/drivers/media/dvb/dvb-core/dvb_net.c index 56d871cfd7f..c2334aef414 100644 --- a/drivers/media/dvb/dvb-core/dvb_net.c +++ b/drivers/media/dvb/dvb-core/dvb_net.c @@ -168,7 +168,7 @@ struct dvb_net_priv {   *  stolen from eth.c out of the linux kernel, hacked for dvb-device   *  by Michael Holzt <kju@debian.org>   */ -static unsigned short dvb_net_eth_type_trans(struct sk_buff *skb, +static __be16 dvb_net_eth_type_trans(struct sk_buff *skb,  				      struct net_device *dev)  {  	struct ethhdr *eth; @@ -277,10 +277,10 @@ static int handle_one_ule_extension( struct dvb_net_priv *p )  			if(ext_len >= 0) {  				p->ule_next_hdr += ext_len;  				if (!p->ule_bridged) { -					p->ule_sndu_type = ntohs(*(unsigned short *)p->ule_next_hdr); +					p->ule_sndu_type = ntohs(*(__be16 *)p->ule_next_hdr);  					p->ule_next_hdr += 2;  				} else { -					p->ule_sndu_type = ntohs(*(unsigned short *)(p->ule_next_hdr + ((p->ule_dbit ? 2 : 3) * ETH_ALEN))); +					p->ule_sndu_type = ntohs(*(__be16 *)(p->ule_next_hdr + ((p->ule_dbit ? 2 : 3) * ETH_ALEN)));  					/* This assures the extension handling loop will terminate. */  				}  			} @@ -294,7 +294,7 @@ static int handle_one_ule_extension( struct dvb_net_priv *p )  		if (ule_optional_ext_handlers[htype])  			(void)ule_optional_ext_handlers[htype]( p );  		p->ule_next_hdr += ext_len; -		p->ule_sndu_type = ntohs( *(unsigned short *)(p->ule_next_hdr-2) ); +		p->ule_sndu_type = ntohs( *(__be16 *)(p->ule_next_hdr-2) );  		/*  		 * note: the length of the next header type is included in the  		 * length of THIS optional extension header @@ -594,8 +594,8 @@ static void dvb_net_ule( struct net_device *dev, const u8 *buf, size_t buf_len )  		/* Check for complete payload. */  		if (priv->ule_sndu_remain <= 0) {  			/* Check CRC32, we've got it in our skb already. */ -			unsigned short ulen = htons(priv->ule_sndu_len); -			unsigned short utype = htons(priv->ule_sndu_type); +			__be16 ulen = htons(priv->ule_sndu_len); +			__be16 utype = htons(priv->ule_sndu_type);  			const u8 *tail;  			struct kvec iov[3] = {  				{ &ulen, sizeof ulen },  |