1 #ifndef _MACHINE_GTENVAR_H 2 #define _MACHINE_GTENVAR_H 3 4 struct rasops_info; 5 6 struct gten_softc { 7 struct device gt_dev; 8 9 struct rasops_info *gt_ri; 10 paddr_t gt_paddr; 11 bus_size_t gt_memsize; 12 bus_addr_t gt_memaddr; 13 int gt_nscreens; 14 u_char gt_cmap_red[256]; 15 u_char gt_cmap_green[256]; 16 u_char gt_cmap_blue[256]; 17 }; 18 19 int gten_cnattach(bus_space_tag_t); 20 21 #endif /* _MACHINE_GTENVAR_H_ */ 22