* Set protection 'val' on all channels for window 'w' on engine 'e' */
| 2110 | * Set protection 'val' on all channels for window 'w' on engine 'e' |
| 2111 | */ |
| 2112 | static void |
| 2113 | xor_set_prot(u_long base, int w, int e, int val) |
| 2114 | { |
| 2115 | int c; |
| 2116 | |
| 2117 | for (c = 0; c < MV_XOR_CHAN_MAX; c++) |
| 2118 | xor_chan_write(base, c, e, w, val); |
| 2119 | } |
| 2120 | |
| 2121 | static int |
| 2122 | win_xor_can_remap(int i) |
no test coverage detected