diff options
| -rw-r--r-- | sound/pci/rme9652/hdspm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/rme9652/hdspm.c b/sound/pci/rme9652/hdspm.c index 5d70efec26c0..b8b15ee5eebb 100644 --- a/sound/pci/rme9652/hdspm.c +++ b/sound/pci/rme9652/hdspm.c | |||
| @@ -3892,8 +3892,8 @@ static int hdspm_sync_in_sync_check(struct hdspm *hdspm) | |||
| 3892 | 3892 | ||
| 3893 | case AES32: | 3893 | case AES32: |
| 3894 | status = hdspm_read(hdspm, HDSPM_statusRegister2); | 3894 | status = hdspm_read(hdspm, HDSPM_statusRegister2); |
| 3895 | lock = (status & HDSPM_syncInLock) ? 1 : 0; | 3895 | lock = (status & 0x100000) ? 1 : 0; |
| 3896 | sync = (status & HDSPM_syncInSync) ? 1 : 0; | 3896 | sync = (status & 0x200000) ? 1 : 0; |
| 3897 | break; | 3897 | break; |
| 3898 | 3898 | ||
| 3899 | case MADIface: | 3899 | case MADIface: |
