mirror of https://gitee.com/openkylin/linux.git
ieee1394: fix printk format warning
Fix printk format warning: drivers/ieee1394/nodemgr.c:364: warning: long long unsigned int format, u64 arg (arg 3) Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
This commit is contained in:
parent
b07375b155
commit
7f5880394c
|
@ -362,7 +362,7 @@ static ssize_t fw_show_ne_tlabels_mask(struct device *dev,
|
||||||
#endif
|
#endif
|
||||||
spin_unlock_irqrestore(&hpsb_tlabel_lock, flags);
|
spin_unlock_irqrestore(&hpsb_tlabel_lock, flags);
|
||||||
|
|
||||||
return sprintf(buf, "0x%016llx\n", tm);
|
return sprintf(buf, "0x%016llx\n", (unsigned long long)tm);
|
||||||
}
|
}
|
||||||
static DEVICE_ATTR(tlabels_mask, S_IRUGO, fw_show_ne_tlabels_mask, NULL);
|
static DEVICE_ATTR(tlabels_mask, S_IRUGO, fw_show_ne_tlabels_mask, NULL);
|
||||||
#endif /* HPSB_DEBUG_TLABELS */
|
#endif /* HPSB_DEBUG_TLABELS */
|
||||||
|
|
Loading…
Reference in New Issue