git: 5b375162dec5 - stable/13 - pccard: Don't include version information.

From: Warner Losh <imp_at_FreeBSD.org>
Date: Wed, 23 Aug 2023 17:49:17 UTC
The branch stable/13 has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=5b375162dec501d4277436f094863570ade17811

commit 5b375162dec501d4277436f094863570ade17811
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2023-08-22 13:16:30 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-08-23 17:43:18 +0000

    pccard: Don't include version information.
    
    $FreeBSD$ is about to be removed, so don't include the next line.
    
    Sponsored by:           Netflix
---
 sys/tools/pccarddevs2h.awk | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/sys/tools/pccarddevs2h.awk b/sys/tools/pccarddevs2h.awk
index 923e63dbca83..df902984f1c5 100644
--- a/sys/tools/pccarddevs2h.awk
+++ b/sys/tools/pccarddevs2h.awk
@@ -92,16 +92,9 @@ BEGIN {
 	hfile="pccarddevs.h"
 }
 NR == 1 {
-	VERSION = $0
-	gsub("\\$", "", VERSION)
-
-	printf("/*\t\$FreeBSD\$\t*/\n\n") > hfile
 	printf("/*\n") > hfile
 	printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
 	    > hfile
-	printf(" *\n") > hfile
-	printf(" * generated from:\n") > hfile
-	printf(" *\t%s\n", VERSION) > hfile
 	printf(" */\n") > hfile
 
 	next