|
@@ -451,12 +451,12 @@ static void iriap_getvaluebyclass_confirm(struct iriap_cb *self,
|
|
|
n = 2;
|
|
|
|
|
|
/* Get length, MSB first */
|
|
|
- len = be16_to_cpu(get_unaligned((__u16 *)(fp+n))); n += 2;
|
|
|
+ len = be16_to_cpu(get_unaligned((__be16 *)(fp+n))); n += 2;
|
|
|
|
|
|
IRDA_DEBUG(4, "%s(), len=%d\n", __FUNCTION__, len);
|
|
|
|
|
|
/* Get object ID, MSB first */
|
|
|
- obj_id = be16_to_cpu(get_unaligned((__u16 *)(fp+n))); n += 2;
|
|
|
+ obj_id = be16_to_cpu(get_unaligned((__be16 *)(fp+n))); n += 2;
|
|
|
|
|
|
type = fp[n++];
|
|
|
IRDA_DEBUG(4, "%s(), Value type = %d\n", __FUNCTION__, type);
|
|
@@ -506,7 +506,7 @@ static void iriap_getvaluebyclass_confirm(struct iriap_cb *self,
|
|
|
value = irias_new_string_value(fp+n);
|
|
|
break;
|
|
|
case IAS_OCT_SEQ:
|
|
|
- value_len = be16_to_cpu(get_unaligned((__u16 *)(fp+n)));
|
|
|
+ value_len = be16_to_cpu(get_unaligned((__be16 *)(fp+n)));
|
|
|
n += 2;
|
|
|
|
|
|
/* Will truncate to IAS_MAX_OCTET_STRING bytes */
|
|
@@ -544,7 +544,7 @@ static void iriap_getvaluebyclass_response(struct iriap_cb *self,
|
|
|
{
|
|
|
struct sk_buff *tx_skb;
|
|
|
int n;
|
|
|
- __u32 tmp_be32;
|
|
|
+ __be32 tmp_be32;
|
|
|
__be16 tmp_be16;
|
|
|
__u8 *fp;
|
|
|
|