From: Harvey Harrison Date: Fri, 4 Jul 2008 07:28:32 +0000 (+0200) Subject: block: use get_unaligned_* helpers X-Git-Tag: v2.6.27-rc1~1114^2~10 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=823ed72e8fe566983b121e8cc3147dd50ce63a8a;p=karo-tx-linux.git block: use get_unaligned_* helpers Signed-off-by: Harvey Harrison Signed-off-by: Andrew Morton Signed-off-by: Jens Axboe --- diff --git a/drivers/block/aoe/aoecmd.c b/drivers/block/aoe/aoecmd.c index 41f818be2f7e..2f1746295d06 100644 --- a/drivers/block/aoe/aoecmd.c +++ b/drivers/block/aoe/aoecmd.c @@ -1003,7 +1003,7 @@ aoecmd_cfg_rsp(struct sk_buff *skb) * Enough people have their dip switches set backwards to * warrant a loud message for this special case. */ - aoemajor = be16_to_cpu(get_unaligned(&h->major)); + aoemajor = get_unaligned_be16(&h->major); if (aoemajor == 0xfff) { printk(KERN_ERR "aoe: Warning: shelf address is all ones. " "Check shelf dip switches.\n");