qcacmn: utils: Replace instances of unadorned %p
Replace instances of unadorned %p in utils. Change-Id: Idd12720d45238adad17ffafa6dfb50041022cbe2 CRs-Fixed: 2111274
This commit is contained in:
@@ -449,7 +449,7 @@ static int pkt_stats_fill_headers(struct sk_buff *skb)
|
||||
#endif
|
||||
|
||||
if (unlikely(skb_headroom(skb) < cds_pkt_size)) {
|
||||
pr_err("VPKT [%d]: Insufficient headroom, head[%p], data[%p], req[%zu]",
|
||||
pr_err("VPKT [%d]: Insufficient headroom, head[%pK], data[%pK], req[%zu]",
|
||||
__LINE__, skb->head, skb->data, sizeof(msg_header));
|
||||
return -EIO;
|
||||
}
|
||||
@@ -458,7 +458,7 @@ static int pkt_stats_fill_headers(struct sk_buff *skb)
|
||||
&cds_pktlog, cds_pkt_size);
|
||||
|
||||
if (unlikely(skb_headroom(skb) < sizeof(int))) {
|
||||
pr_err("VPKT [%d]: Insufficient headroom, head[%p], data[%p], req[%zu]",
|
||||
pr_err("VPKT [%d]: Insufficient headroom, head[%pK], data[%pK], req[%zu]",
|
||||
__LINE__, skb->head, skb->data, sizeof(int));
|
||||
return -EIO;
|
||||
}
|
||||
@@ -480,7 +480,7 @@ static int pkt_stats_fill_headers(struct sk_buff *skb)
|
||||
msg_header.wmsg.length = cpu_to_be16(skb->len);
|
||||
|
||||
if (unlikely(skb_headroom(skb) < sizeof(msg_header))) {
|
||||
pr_err("VPKT [%d]: Insufficient headroom, head[%p], data[%p], req[%zu]",
|
||||
pr_err("VPKT [%d]: Insufficient headroom, head[%pK], data[%pK], req[%zu]",
|
||||
__LINE__, skb->head, skb->data, sizeof(msg_header));
|
||||
return -EIO;
|
||||
}
|
||||
|
Reference in New Issue
Block a user