Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Jul 2023 05:10:33 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 761ab48d6af8 - main - kbdcontrol: Remove compat code for 4.x -> 5.x transition
Message-ID:  <202307070510.3675AX05051171@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=761ab48d6af8e949452a64e2baa279c85c848cbb

commit 761ab48d6af8e949452a64e2baa279c85c848cbb
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2023-07-07 05:08:01 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-07-07 05:10:18 +0000

    kbdcontrol: Remove compat code for 4.x -> 5.x transition
    
    I think we're safely past that now...
    
    Sponsored by:           Netflix
---
 usr.sbin/kbdcontrol/kbdcontrol.c | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/usr.sbin/kbdcontrol/kbdcontrol.c b/usr.sbin/kbdcontrol/kbdcontrol.c
index 614734e6123a..d7a0ff5ecfd0 100644
--- a/usr.sbin/kbdcontrol/kbdcontrol.c
+++ b/usr.sbin/kbdcontrol/kbdcontrol.c
@@ -46,20 +46,6 @@ __FBSDID("$FreeBSD$");
 #include "path.h"
 #include "lex.h"
 
-/*
- * HALT, PDWN, and PASTE aren't defined in 4.x, but we need them to bridge
- * to 5.0-current so define them here as a stop gap transition measure.
- */
-#ifndef	HALT
-#define	HALT		0xa1		/* halt machine */
-#endif
-#ifndef PDWN
-#define	PDWN		0xa2		/* halt machine and power down */
-#endif
-#ifndef PASTE
-#define PASTE		0xa3		/* paste from cut-paste buffer */
-#endif
-
 #define	SPECIAL		0x80000000
 
 static const char ctrl_names[32][4] = {



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