diff options
| author | Randy Dunlap <randy.dunlap@oracle.com> | 2006-10-24 00:44:36 -0400 |
|---|---|---|
| committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2006-12-07 15:32:19 -0500 |
| commit | 7f5880394c8ab01854c0cba288352a1a77d5ea82 (patch) | |
| tree | 08c30051dfcc0415c9db01cd9f203e8eca894e0a | |
| parent | b07375b155a0d2ed21a64db68e737da1f19385f7 (diff) | |
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>
| -rw-r--r-- | drivers/ieee1394/nodemgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ieee1394/nodemgr.c b/drivers/ieee1394/nodemgr.c index e2ca8e92f43f..640d677ae03e 100644 --- a/drivers/ieee1394/nodemgr.c +++ b/drivers/ieee1394/nodemgr.c | |||
| @@ -362,7 +362,7 @@ static ssize_t fw_show_ne_tlabels_mask(struct device *dev, | |||
| 362 | #endif | 362 | #endif |
| 363 | spin_unlock_irqrestore(&hpsb_tlabel_lock, flags); | 363 | spin_unlock_irqrestore(&hpsb_tlabel_lock, flags); |
| 364 | 364 | ||
| 365 | return sprintf(buf, "0x%016llx\n", tm); | 365 | return sprintf(buf, "0x%016llx\n", (unsigned long long)tm); |
| 366 | } | 366 | } |
| 367 | static DEVICE_ATTR(tlabels_mask, S_IRUGO, fw_show_ne_tlabels_mask, NULL); | 367 | static DEVICE_ATTR(tlabels_mask, S_IRUGO, fw_show_ne_tlabels_mask, NULL); |
| 368 | #endif /* HPSB_DEBUG_TLABELS */ | 368 | #endif /* HPSB_DEBUG_TLABELS */ |
