aboutsummaryrefslogtreecommitdiff
path: root/stand
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2018-06-15 19:07:06 +0000
committerWarner Losh <imp@FreeBSD.org>2018-06-15 19:07:06 +0000
commitc0626257af1f1d278405c331e267efa0d7a6f079 (patch)
treeb1e21abf5fc27b69b490f98bf5153c3a7d1231fc /stand
parente6e49c7df4f7712271298cd513f2999a80deb975 (diff)
downloadsrc-c0626257af1f1d278405c331e267efa0d7a6f079.tar.gz
src-c0626257af1f1d278405c331e267efa0d7a6f079.zip
Migrate has_keyboard to bool.
Notes
Notes: svn path=/head/; revision=335228
Diffstat (limited to 'stand')
-rw-r--r--stand/efi/loader/main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/stand/efi/loader/main.c b/stand/efi/loader/main.c
index d0c830a5cb48..0cbfe3ef0496 100644
--- a/stand/efi/loader/main.c
+++ b/stand/efi/loader/main.c
@@ -92,14 +92,14 @@ efi_zfs_is_preferred(EFI_HANDLE *h)
}
#endif
-static int
+static bool
has_keyboard(void)
{
EFI_STATUS status;
EFI_DEVICE_PATH *path;
EFI_HANDLE *hin, *hin_end, *walker;
UINTN sz;
- int retval = 0;
+ bool retval = false;
/*
* Find all the handles that support the SIMPLE_TEXT_INPUT_PROTOCOL and
@@ -146,7 +146,7 @@ has_keyboard(void)
acpi = (ACPI_HID_DEVICE_PATH *)(void *)path;
if ((EISA_ID_TO_NUM(acpi->HID) & 0xff00) == 0x300 &&
(acpi->HID & 0xffff) == PNP_EISA_ID_CONST) {
- retval = 1;
+ retval = true;
goto out;
}
/*
@@ -162,7 +162,7 @@ has_keyboard(void)
if (usb->DeviceClass == 3 && /* HID */
usb->DeviceSubClass == 1 && /* Boot devices */
usb->DeviceProtocol == 1) { /* Boot keyboards */
- retval = 1;
+ retval = true;
goto out;
}
}
@@ -416,7 +416,7 @@ main(int argc, CHAR16 *argv[])
int i, j, howto;
bool vargood;
UINTN k;
- int has_kbd;
+ bool has_kbd;
char *s;
EFI_DEVICE_PATH *imgpath;
CHAR16 *text;