diff options
-rw-r--r-- | drivers/firewire/fw-device.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/firewire/fw-device.c b/drivers/firewire/fw-device.c index 7503b8d9abe5..3841086048d6 100644 --- a/drivers/firewire/fw-device.c +++ b/drivers/firewire/fw-device.c | |||
@@ -362,7 +362,8 @@ guid_show(struct device *dev, struct device_attribute *attr, char *buf) | |||
362 | 362 | ||
363 | guid = ((u64)device->config_rom[3] << 32) | device->config_rom[4]; | 363 | guid = ((u64)device->config_rom[3] << 32) | device->config_rom[4]; |
364 | 364 | ||
365 | return snprintf(buf, PAGE_SIZE, "0x%016llx\n", guid); | 365 | return snprintf(buf, PAGE_SIZE, "0x%016llx\n", |
366 | (unsigned long long)guid); | ||
366 | } | 367 | } |
367 | 368 | ||
368 | static struct device_attribute fw_device_attributes[] = { | 369 | static struct device_attribute fw_device_attributes[] = { |