xfree86: os-support: bsd: fix warning on discarded const

Fix warnings:

../hw/xfree86/os-support/bsd/bsd_init.c
../hw/xfree86/os-support/bsd/bsd_init.c:91:5: warning: initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
   91 |     "pccons (with X support)",
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~
../hw/xfree86/os-support/bsd/bsd_init.c:97:5: warning: initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
   97 |     "pcvt",
      |     ^~~~~~
../hw/xfree86/os-support/bsd/bsd_init.c💯5: warning: initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
  100 |     "wscons",
      |     ^~~~~~~~

../hw/xfree86/os-support/bsd/bsd_init.c:462:14: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
  462 |     vtprefix = "/dev/ttyv";
      |              ^
../hw/xfree86/os-support/bsd/bsd_init.c:471:18: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
  471 |         vtprefix = "/dev/ttyE";
      |                  ^

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1446>
This commit is contained in:
Enrico Weigelt, metux IT consult 2024-03-27 19:04:49 +01:00 committed by Marge Bot
parent 620b678cfe
commit 6eea4f0b8c

View File

@ -90,7 +90,7 @@ static int initialVT = -1;
#define CHECK_DRIVER_MSG \ #define CHECK_DRIVER_MSG \
"Check your kernel's console driver configuration and /dev entries" "Check your kernel's console driver configuration and /dev entries"
static char *supported_drivers[] = { static const char *supported_drivers[] = {
#ifdef PCCONS_SUPPORT #ifdef PCCONS_SUPPORT
"pccons (with X support)", "pccons (with X support)",
#endif #endif
@ -457,7 +457,8 @@ xf86OpenPcvt(void)
/* This looks much like syscons, since pcvt is API compatible */ /* This looks much like syscons, since pcvt is API compatible */
int fd = -1; int fd = -1;
vtmode_t vtmode; vtmode_t vtmode;
char vtname[12], *vtprefix; char vtname[12];
const char *vtprefix;
#ifdef __NetBSD__ #ifdef __NetBSD__
struct pcvtid pcvt_version; struct pcvtid pcvt_version;
#endif #endif