diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2022-09-22 22:08:52 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2022-09-22 22:08:52 +0000 |
| commit | 7ae99f80b6661760c5de3edd330b279f04b092a2 (patch) | |
| tree | 533dff9d5801d8e7cb6c552f39761067180853b7 /sys/dev/vt/hw | |
| parent | 02fac928ab687607786801cdf33f100c70cc6a2e (diff) | |
Diffstat (limited to 'sys/dev/vt/hw')
| -rw-r--r-- | sys/dev/vt/hw/efifb/efifb.c | 2 | ||||
| -rw-r--r-- | sys/dev/vt/hw/vbefb/vbefb.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vt/hw/efifb/efifb.c b/sys/dev/vt/hw/efifb/efifb.c index fd78e53bbaf7..b30b1d29e205 100644 --- a/sys/dev/vt/hw/efifb/efifb.c +++ b/sys/dev/vt/hw/efifb/efifb.c @@ -154,5 +154,5 @@ vt_efifb_fini(struct vt_device *vd, void *softc) struct fb_info *info = softc; vt_fb_fini(vd, softc); - pmap_unmapdev(info->fb_vbase, info->fb_size); + pmap_unmapdev((void *)info->fb_vbase, info->fb_size); } diff --git a/sys/dev/vt/hw/vbefb/vbefb.c b/sys/dev/vt/hw/vbefb/vbefb.c index 569a40eb7d95..5223fb58d850 100644 --- a/sys/dev/vt/hw/vbefb/vbefb.c +++ b/sys/dev/vt/hw/vbefb/vbefb.c @@ -159,5 +159,5 @@ vt_vbefb_fini(struct vt_device *vd, void *softc) struct fb_info *info = softc; vt_fb_fini(vd, softc); - pmap_unmapdev(info->fb_vbase, info->fb_size); + pmap_unmapdev((void *)info->fb_vbase, info->fb_size); } |
