Lines Matching defs:ph
60 static __inline u_int8_t _pcdisplay_6845_read(struct pcdisplay_handle *ph, int reg)
62 bus_space_write_1(ph->ph_iot, ph->ph_ioh_6845, MC6845_INDEX, reg);
63 return (bus_space_read_1(ph->ph_iot, ph->ph_ioh_6845, MC6845_DATA));
66 static __inline void _pcdisplay_6845_write(struct pcdisplay_handle *ph,
69 bus_space_write_1(ph->ph_iot, ph->ph_ioh_6845, MC6845_INDEX, reg);
70 bus_space_write_1(ph->ph_iot, ph->ph_ioh_6845, MC6845_DATA, val);
73 #define pcdisplay_6845_read(ph, reg) \
74 _pcdisplay_6845_read(ph, offsetof(struct reg_mc6845, reg))
75 #define pcdisplay_6845_write(ph, reg, val) \
76 _pcdisplay_6845_write(ph, offsetof(struct reg_mc6845, reg), val)