1 2 struct mcclock_softc { 3 struct device sc_dev; 4 const struct mcclock_busfns *sc_busfns; 5 }; 6 7 struct mcclock_busfns { 8 void (*mc_bf_write) __P((struct mcclock_softc *, u_int, u_int)); 9 u_int (*mc_bf_read) __P((struct mcclock_softc *, u_int)); 10 }; 11 12 void mcclock_attach __P((struct mcclock_softc *, 13 const struct mcclock_busfns *)); 14