The branch main has been updated by imp:

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

commit 761ab48d6af8e949452a64e2baa279c85c848cbb
Author:     Warner Losh <[email protected]>
AuthorDate: 2023-07-07 05:08:01 +0000
Commit:     Warner Losh <[email protected]>
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] = {

Reply via email to