* Set protection 'val' on all channels for window 'w' */
| 1866 | * Set protection 'val' on all channels for window 'w' |
| 1867 | */ |
| 1868 | static void |
| 1869 | idma_set_prot(u_long base, int w, int val) |
| 1870 | { |
| 1871 | int c; |
| 1872 | |
| 1873 | for (c = 0; c < MV_IDMA_CHAN_MAX; c++) |
| 1874 | idma_cap_write(base, c, w, val); |
| 1875 | } |
| 1876 | |
| 1877 | static int |
| 1878 | win_idma_can_remap(int i) |
no test coverage detected