| 380 | } |
| 381 | |
| 382 | s32 CARDCheckEx(s32 chan, s32* xferBytes) |
| 383 | { |
| 384 | s32 result = CARDCheckExAsync(chan, xferBytes, __CARDSyncCallback); |
| 385 | if (result < 0 || xferBytes == 0) |
| 386 | { |
| 387 | return result; |
| 388 | } |
| 389 | |
| 390 | return __CARDSync(chan); |
| 391 | } |
| 392 | |
| 393 | s32 CARDCheck(s32 channel) |
| 394 | { |
no test coverage detected