powerpc: Cleanup from l64 to ll64 change: drivers/net
These are powerpc specific drivers. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Acked-by: David S. Miller <davem@davemloft.net> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
committed by
Benjamin Herrenschmidt
parent
1901515c79
commit
a1c5a8932b
@@ -132,7 +132,7 @@ void ehea_dump(void *adr, int len, char *msg)
|
||||
int x;
|
||||
unsigned char *deb = adr;
|
||||
for (x = 0; x < len; x += 16) {
|
||||
printk(DRV_NAME " %s adr=%p ofs=%04x %016lx %016lx\n", msg,
|
||||
printk(DRV_NAME " %s adr=%p ofs=%04x %016llx %016llx\n", msg,
|
||||
deb, x, *((u64 *)&deb[0]), *((u64 *)&deb[8]));
|
||||
deb += 16;
|
||||
}
|
||||
@@ -883,7 +883,7 @@ static irqreturn_t ehea_qp_aff_irq_handler(int irq, void *param)
|
||||
|
||||
while (eqe) {
|
||||
qp_token = EHEA_BMASK_GET(EHEA_EQE_QP_TOKEN, eqe->entry);
|
||||
ehea_error("QP aff_err: entry=0x%lx, token=0x%x",
|
||||
ehea_error("QP aff_err: entry=0x%llx, token=0x%x",
|
||||
eqe->entry, qp_token);
|
||||
|
||||
qp = port->port_res[qp_token].qp;
|
||||
@@ -1159,7 +1159,7 @@ static void ehea_parse_eqe(struct ehea_adapter *adapter, u64 eqe)
|
||||
netif_stop_queue(port->netdev);
|
||||
break;
|
||||
default:
|
||||
ehea_error("unknown event code %x, eqe=0x%lX", ec, eqe);
|
||||
ehea_error("unknown event code %x, eqe=0x%llX", ec, eqe);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -1971,7 +1971,7 @@ static void ehea_set_multicast_list(struct net_device *dev)
|
||||
}
|
||||
|
||||
if (dev->mc_count > port->adapter->max_mc_mac) {
|
||||
ehea_info("Mcast registration limit reached (0x%lx). "
|
||||
ehea_info("Mcast registration limit reached (0x%llx). "
|
||||
"Use ALLMULTI!",
|
||||
port->adapter->max_mc_mac);
|
||||
goto out;
|
||||
|
Reference in New Issue
Block a user