void ogc_input__config(u8 num, u8 type, u8 padtype) { switch (type) { case 0: pad_config(num, padtype); break; default: #ifdef HW_RVL wpad_config(num,type-1, padtype); #endif break; } }
void ogc_input__config(u8 pad, u8 type) { switch (type) { case 0: pad_config(pad); break; #ifdef HW_RVL case 1: wpad_config(pad); break; #endif default: break; } }