Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Sep 2021 01:04:00 GMT
From:      Vladimir Kondratyev <wulf@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 9faebc1e664d - stable/13 - hkbd(4): Fix build on 32bit platforms
Message-ID:  <202109230104.18N140IF073938@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by wulf:

URL: https://cgit.FreeBSD.org/src/commit/?id=9faebc1e664d675d2f1f6dc54e9735c39aa8b0e7

commit 9faebc1e664d675d2f1f6dc54e9735c39aa8b0e7
Author:     Vladimir Kondratyev <wulf@FreeBSD.org>
AuthorDate: 2021-09-09 22:49:26 +0000
Commit:     Vladimir Kondratyev <wulf@FreeBSD.org>
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 *);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202109230104.18N140IF073938>