| 851 | } |
| 852 | |
| 853 | inline static BOOL IsDmaCommand(u32 command) |
| 854 | { |
| 855 | u32 i; |
| 856 | |
| 857 | if (command == 1 || command == 4 || command == 5 || command == 14) |
| 858 | return TRUE; |
| 859 | |
| 860 | for (i = 0; i < sizeof(DmaCommand) / sizeof(DmaCommand[0]); i++) |
| 861 | { |
| 862 | if (command == DmaCommand[i]) |
| 863 | return TRUE; |
| 864 | } |
| 865 | |
| 866 | return FALSE; |
| 867 | } |
| 868 | |
| 869 | static void cbForStateBusy(u32 intType) |
| 870 | { |