Lines Matching defs:sc_if
106 #define SK_IF_READ_4(sc_if, skip, reg) \
107 sk_win_read_4(sc_if->sk_softc, reg + \
108 ((sc_if->sk_port * (skip + 1)) * SK_WIN_LEN))
109 #define SK_IF_READ_2(sc_if, skip, reg) \
110 sk_win_read_2(sc_if->sk_softc, reg + \
111 ((sc_if->sk_port * (skip + 1)) * SK_WIN_LEN))
112 #define SK_IF_READ_1(sc_if, skip, reg) \
113 sk_win_read_1(sc_if->sk_softc, reg + \
114 ((sc_if->sk_port * (skip + 1)) * SK_WIN_LEN))
116 #define SK_IF_WRITE_4(sc_if, skip, reg, val) \
117 sk_win_write_4(sc_if->sk_softc, \
118 reg + ((sc_if->sk_port * (skip + 1)) * SK_WIN_LEN), val)
119 #define SK_IF_WRITE_2(sc_if, skip, reg, val) \
120 sk_win_write_2(sc_if->sk_softc, \
121 reg + ((sc_if->sk_port * (skip + 1)) * SK_WIN_LEN), val)
122 #define SK_IF_WRITE_1(sc_if, skip, reg, val) \
123 sk_win_write_1(sc_if->sk_softc, \
124 reg + ((sc_if->sk_port * (skip + 1)) * SK_WIN_LEN), val)