aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/gdm72xx/gdm_wimax.c
diff options
context:
space:
mode:
authorMacpaul Lin <macpaul.from.taiwan@gmail.com>2012-09-29 18:08:06 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-10-22 08:26:13 -0700
commit2874762b31d8d0eebcfdf189ec9906be9c1460f6 (patch)
tree0203621a672fa7e7076289c26432a5f101365771 /drivers/staging/gdm72xx/gdm_wimax.c
parentStaging: bcm: Reverse condition in if statement in Misc.c (diff)
downloadlinux-dev-2874762b31d8d0eebcfdf189ec9906be9c1460f6.tar.xz
linux-dev-2874762b31d8d0eebcfdf189ec9906be9c1460f6.zip
staging/gdm72xx: gdm_wimax: fix compile error when enable debug
Fix compile error when enable DEBUG_SDU and DEBUG_HCI. Replace deprecated NIPQUAD marco to C code. Signed-off-by: Macpaul Lin <macpaul.from.taiwan@gmail.com> Cc: Macpaul Lin <macpaul@gmail.com> Cc: Paul Stewart <pstew@chromium.org> Cc: Ben Chan <benchan@chromium.org> Cc: Sage Ahn <syahn@gctsemi.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/gdm72xx/gdm_wimax.c')
-rw-r--r--drivers/staging/gdm72xx/gdm_wimax.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/staging/gdm72xx/gdm_wimax.c b/drivers/staging/gdm72xx/gdm_wimax.c
index 6cb810701a3e..dad6fd3e0a7f 100644
--- a/drivers/staging/gdm72xx/gdm_wimax.c
+++ b/drivers/staging/gdm72xx/gdm_wimax.c
@@ -170,7 +170,10 @@ static void dump_eth_packet(const char *title, u8 *data, int len)
if (!(data[0] == 0xff && data[1] == 0xff)) {
if (protocol == ETH_P_IP) {
printk(KERN_DEBUG " src=%u.%u.%u.%u\n",
- NIPQUAD(ih->saddr));
+ ((unsigned char *)&(ih->saddr))[0],
+ ((unsigned char *)&(ih->saddr))[1],
+ ((unsigned char *)&(ih->saddr))[2],
+ ((unsigned char *)&(ih->saddr))[3]);
} else if (protocol == ETH_P_IPV6) {
#ifdef NIP6
printk(KERN_DEBUG " src=%x:%x:%x:%x:%x:%x:%x:%x\n",