The branch stable/13 has been updated by wulf: URL: https://cgit.FreeBSD.org/src/commit/?id=9faebc1e664d675d2f1f6dc54e9735c39aa8b0e7
commit 9faebc1e664d675d2f1f6dc54e9735c39aa8b0e7 Author: Vladimir Kondratyev <[email protected]> AuthorDate: 2021-09-09 22:49:26 +0000 Commit: Vladimir Kondratyev <[email protected]> CommitDate: 2021-09-23 00:59:37 +0000 hkbd(4): Fix build on 32bit platforms (cherry picked from commit 38d2e9314b127b3466e8ae4120e21fe1ad076dfc) --- sys/dev/hid/hkbd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/hid/hkbd.c b/sys/dev/hid/hkbd.c index bfd8e12df746..ad9b3dde3d37 100644 --- a/sys/dev/hid/hkbd.c +++ b/sys/dev/hid/hkbd.c @@ -301,8 +301,8 @@ static void hkbd_timeout(void *); static int hkbd_set_leds(struct hkbd_softc *, uint8_t); static int hkbd_set_typematic(keyboard_t *, int); #ifdef HKBD_EMULATE_ATSCANCODE -static uint32_t hkbd_atkeycode(int, const uint64_t *); -static int hkbd_key2scan(struct hkbd_softc *, int, const uint64_t *, int); +static uint32_t hkbd_atkeycode(int, const bitstr_t *); +static int hkbd_key2scan(struct hkbd_softc *, int, const bitstr_t *, int); #endif static uint32_t hkbd_read_char(keyboard_t *, int); static void hkbd_clear_state(keyboard_t *); _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
