Staging: quickstart: Fix compilation warning on 64 bit arch
acpi_size is u32 or u64 depending on architecture. Cast it to unsigned long and use %lu for printing. This fix following build warning: drivers/staging/quickstart/quickstart.c: In function ‘quickstart_acpi_ghid’: drivers/staging/quickstart/quickstart.c:212:5: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 3 has type ‘acpi_size’ [-Wformat] Signed-off-by: Szymon Janc <szymon@janc.net.pl> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
af5728e08a
Коммит
5f01f7f301
|
@ -209,8 +209,9 @@ static int quickstart_acpi_ghid(struct quickstart_acpi *quickstart)
|
||||||
quickstart->button->id = *(uint64_t *)buffer.pointer;
|
quickstart->button->id = *(uint64_t *)buffer.pointer;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
pr_err("%s GHID method returned buffer of unexpected length %u\n",
|
pr_err("%s GHID method returned buffer of unexpected length %lu\n",
|
||||||
quickstart->button->name, buffer.length);
|
quickstart->button->name,
|
||||||
|
(unsigned long)buffer.length);
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче