diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2013-06-26 23:52:10 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2013-06-26 23:52:10 +0000 |
| commit | 0c10b85a1918efd26558408812709180c6ebaf8e (patch) | |
| tree | 5308c8b7ecfe5d8a177052a821b0da7e79c86f9b /sys/dev/acpi_support | |
| parent | e83c9e35a768747c32eaada134150ce668d80a91 (diff) | |
Notes
Diffstat (limited to 'sys/dev/acpi_support')
| -rw-r--r-- | sys/dev/acpi_support/atk0110.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi_support/atk0110.c b/sys/dev/acpi_support/atk0110.c index c3f480e90364..7d30d5fd52ae 100644 --- a/sys/dev/acpi_support/atk0110.c +++ b/sys/dev/acpi_support/atk0110.c @@ -253,8 +253,8 @@ aibs_attach_sif(struct aibs_softc *sc, enum aibs_type st) "0x%08"PRIx64" %20s %5"PRIi64" / %5"PRIi64" " "0x%"PRIx64"\n", name[0], i, - as[i].i, desc, (int64_t)as[i].l, (int64_t)as[i].h, - oi[4].Integer.Value); + (uint64_t)as[i].i, desc, (int64_t)as[i].l, + (int64_t)as[i].h, (uint64_t)oi[4].Integer.Value); #endif snprintf(si, sizeof(si), "%i", i); SYSCTL_ADD_PROC(device_get_sysctl_ctx(sc->sc_dev), |
