vgareg.h (9199c09a159c4e3e98c212d4eec1edc5252d9e33) | vgareg.h (aa3d547d095ff07fdc39ffc5ae4c371844b504ab) |
---|---|
1/*- 2 * Copyright (c) 1999 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 74 unchanged lines hidden (view full) --- 83int vga_open(struct cdev *dev, vga_softc_t *sc, int flag, int mode, 84 struct thread *td); 85int vga_close(struct cdev *dev, vga_softc_t *sc, int flag, int mode, 86 struct thread *td); 87int vga_read(struct cdev *dev, vga_softc_t *sc, struct uio *uio, int flag); 88int vga_write(struct cdev *dev, vga_softc_t *sc, struct uio *uio, int flag); 89int vga_ioctl(struct cdev *dev, vga_softc_t *sc, u_long cmd, caddr_t arg, 90 int flag, struct thread *td); | 1/*- 2 * Copyright (c) 1999 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 74 unchanged lines hidden (view full) --- 83int vga_open(struct cdev *dev, vga_softc_t *sc, int flag, int mode, 84 struct thread *td); 85int vga_close(struct cdev *dev, vga_softc_t *sc, int flag, int mode, 86 struct thread *td); 87int vga_read(struct cdev *dev, vga_softc_t *sc, struct uio *uio, int flag); 88int vga_write(struct cdev *dev, vga_softc_t *sc, struct uio *uio, int flag); 89int vga_ioctl(struct cdev *dev, vga_softc_t *sc, u_long cmd, caddr_t arg, 90 int flag, struct thread *td); |
91int vga_mmap(struct cdev *dev, vga_softc_t *sc, vm_ooffset_t offset, 92 vm_offset_t *paddr, int prot, vm_memattr_t *memattr); | 91int vga_mmap(struct cdev *dev, vga_softc_t *sc, vm_offset_t offset, 92 vm_offset_t *paddr, int prot); |
93#endif 94 95extern int (*vga_sub_configure)(int flags); 96 97#endif /* _KERNEL */ 98 99#endif /* _DEV_FB_VGAREG_H_ */ | 93#endif 94 95extern int (*vga_sub_configure)(int flags); 96 97#endif /* _KERNEL */ 98 99#endif /* _DEV_FB_VGAREG_H_ */ |