| 391 | } |
| 392 | |
| 393 | s32 CARDCheck(s32 channel) |
| 394 | { |
| 395 | s32 result; |
| 396 | s32 xferBytes; |
| 397 | |
| 398 | result = CARDCheckExAsync(channel, &xferBytes, __CARDSyncCallback); |
| 399 | |
| 400 | if (result < 0 || &xferBytes == NULL) |
| 401 | { |
| 402 | return result; |
| 403 | } |
| 404 | |
| 405 | return __CARDSync(channel); |
| 406 | } |
nothing calls this directly
no test coverage detected