]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
Staging: quickstart: Fix compilation warning on 64 bit arch
authorSzymon Janc <szymon@janc.net.pl>
Fri, 10 Feb 2012 20:05:43 +0000 (21:05 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 14 Feb 2012 04:08:56 +0000 (20:08 -0800)
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>
drivers/staging/quickstart/quickstart.c

index 352b7ecd6cbb6409068bd47b3119f3cc2bbc884d..cac320738142f1caeb0479705f920f8d47180e08 100644 (file)
@@ -209,8 +209,9 @@ static int quickstart_acpi_ghid(struct quickstart_acpi *quickstart)
                quickstart->button->id = *(uint64_t *)buffer.pointer;
                break;
        default:
-               pr_err("%s GHID method returned buffer of unexpected length %u\n",
-                               quickstart->button->name, buffer.length);
+               pr_err("%s GHID method returned buffer of unexpected length %lu\n",
+                               quickstart->button->name,
+                               (unsigned long)buffer.length);
                ret = -EINVAL;
                break;
        }