| 2072 | **************************************************************************/ |
| 2073 | #if defined(SOC_MV_KIRKWOOD) || defined(SOC_MV_DISCOVERY) |
| 2074 | static int |
| 2075 | xor_ctrl_read(u_long base, int i, int c, int e) |
| 2076 | { |
| 2077 | uint32_t v; |
| 2078 | v = win_xor_ctrl_read(base, c, e); |
| 2079 | v &= (1 << i); |
| 2080 | |
| 2081 | return (v >> i); |
| 2082 | } |
| 2083 | |
| 2084 | static void |
| 2085 | xor_ctrl_write(u_long base, int i, int c, int e, int val) |
no outgoing calls
no test coverage detected