According to the documentation, AES32 cards use a different bit position
for reporting the sync_in status.
Signed-off-by: Adrian Knoth <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
case AES32:
status = hdspm_read(hdspm, HDSPM_statusRegister2);
- lock = (status & HDSPM_syncInLock) ? 1 : 0;
- sync = (status & HDSPM_syncInSync) ? 1 : 0;
+ lock = (status & 0x100000) ? 1 : 0;
+ sync = (status & 0x200000) ? 1 : 0;
break;
case MADIface: