mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-19 05:04:20 +00:00
ide-acpi support warning fix
drivers/ide/ide-acpi.c: In function 'ide_acpi_get_timing': drivers/ide/ide-acpi.c:537: warning: format '%x' expects type 'unsigned int', but argument 4 has type 'long unsigned int' Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Hannes Reinecke <hare@suse.de> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
e3a59b4d93
commit
1e8f34f7d8
1 changed files with 4 additions and 3 deletions
|
@ -532,9 +532,10 @@ void ide_acpi_get_timing(ide_hwif_t *hwif)
|
||||||
out_obj->buffer.length != sizeof(struct GTM_buffer)) {
|
out_obj->buffer.length != sizeof(struct GTM_buffer)) {
|
||||||
kfree(output.pointer);
|
kfree(output.pointer);
|
||||||
printk(KERN_ERR
|
printk(KERN_ERR
|
||||||
"%s: unexpected _GTM length (0x%x)[should be 0x%x] or addr (0x%p)\n",
|
"%s: unexpected _GTM length (0x%x)[should be 0x%zx] or "
|
||||||
__FUNCTION__, out_obj->buffer.length,
|
"addr (0x%p)\n",
|
||||||
sizeof(struct GTM_buffer), out_obj->buffer.pointer);
|
__FUNCTION__, out_obj->buffer.length,
|
||||||
|
sizeof(struct GTM_buffer), out_obj->buffer.pointer);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue