git: 66826fd54ab1 - main - stand: eficom : remove unused ignore_cd
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 11 May 2023 20:06:50 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=66826fd54ab177dfe9f922da10124ea6ce6833be
commit 66826fd54ab177dfe9f922da10124ea6ce6833be
Author: Warner Losh <imp@FreeBSD.org>
AuthorDate: 2023-05-11 20:03:47 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-05-11 20:06:03 +0000
stand: eficom : remove unused ignore_cd
Sponsored by: Netflix
Reviewed by: tsoome
Differential Revision: https://reviews.freebsd.org/D40008
---
stand/efi/libefi/eficom.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/stand/efi/libefi/eficom.c b/stand/efi/libefi/eficom.c
index 67f29ad99ea8..8d14209f8484 100644
--- a/stand/efi/libefi/eficom.c
+++ b/stand/efi/libefi/eficom.c
@@ -47,7 +47,6 @@ struct serial {
uint32_t databits;
EFI_PARITY_TYPE parity;
EFI_STOP_BITS_TYPE stopbits;
- uint32_t ignore_cd; /* boolean */
uint32_t rtsdtr_off; /* boolean */
int ioaddr; /* index in handles array */
EFI_HANDLE currdev; /* current serial device */
@@ -276,7 +275,6 @@ comc_probe(struct console *sc)
comc_port->databits = 8;
comc_port->parity = DefaultParity;
comc_port->stopbits = DefaultStopBits;
- comc_port->ignore_cd = 1; /* ignore cd */
comc_port->rtsdtr_off = 0; /* rts-dtr is on */
handle = NULL;