diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2001-01-23 22:02:08 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2001-01-23 22:02:08 +0000 |
| commit | 5928fa5cc76601fe70befcda201ab1d388ab0314 (patch) | |
| tree | 123c2467424e9fbc4e50b9a7f66202de1c4ae953 /sys/dev/fb | |
| parent | e54e93e21aa960e90c897de44f99a26e658c7069 (diff) | |
Notes
Diffstat (limited to 'sys/dev/fb')
| -rw-r--r-- | sys/dev/fb/s3_pci.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/fb/s3_pci.c b/sys/dev/fb/s3_pci.c index 86d8df198185..20c8b0a100c3 100644 --- a/sys/dev/fb/s3_pci.c +++ b/sys/dev/fb/s3_pci.c @@ -169,8 +169,10 @@ s3lfb_init(int unit, video_adapter_t *adp, int flags) static int s3lfb_get_info(video_adapter_t *adp, int mode, video_info_t *info) { +#if 0 device_t dev = s3pci_dev; /* XXX */ struct s3pci_softc *sc = (struct s3pci_softc *)device_get_softc(dev); +#endif int error; if ((error = (*prevvidsw->get_info)(adp, mode, info))) @@ -217,8 +219,9 @@ s3lfb_set_mode(video_adapter_t *adp, int mode) { device_t dev = s3pci_dev; /* XXX */ struct s3pci_softc *sc = (struct s3pci_softc *)device_get_softc(dev); - u_long cr59, cr5A; +#if 0 unsigned char tmp; +#endif int error; /* First, set the mode as if it was a classic VESA card |
