diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2007-12-11 13:53:26 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:58:03 -0500 |
commit | 6d82de9e576ea84b549b927e6a7775d918a427b5 (patch) | |
tree | 3ecd1ece6966ad7b0d02e7a81edb617998b14774 /net/irda | |
parent | 5661df7b6cc399cabd1ed6b6a929a0445b862c10 (diff) |
[IRDA]: Use htons() where appropriate.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/irda')
-rw-r--r-- | net/irda/iriap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/irda/iriap.c b/net/irda/iriap.c index a86a5d83786b..390a790886eb 100644 --- a/net/irda/iriap.c +++ b/net/irda/iriap.c | |||
@@ -579,7 +579,7 @@ static void iriap_getvaluebyclass_response(struct iriap_cb *self, | |||
579 | fp[n++] = ret_code; | 579 | fp[n++] = ret_code; |
580 | 580 | ||
581 | /* Insert list length (MSB first) */ | 581 | /* Insert list length (MSB first) */ |
582 | tmp_be16 = __constant_htons(0x0001); | 582 | tmp_be16 = htons(0x0001); |
583 | memcpy(fp+n, &tmp_be16, 2); n += 2; | 583 | memcpy(fp+n, &tmp_be16, 2); n += 2; |
584 | 584 | ||
585 | /* Insert object identifier ( MSB first) */ | 585 | /* Insert object identifier ( MSB first) */ |