Do not use BIT_ULL, because older kernels do not have it.

This commit is contained in:
internal 2022-06-07 21:21:03 +02:00
parent 5c2757d581
commit 45c9f076bd
1 changed files with 2 additions and 2 deletions

View File

@ -260,8 +260,8 @@
#define LNB_CMD_DISEQC 6
#define LNB_CMD_SCIF 7
#define LNB_BUSY BIT_ULL(4)
#define LNB_TONE BIT_ULL(15)
#define LNB_BUSY (1ULL << 4)
#define LNB_TONE (1ULL << 15)
#define LNB_INTERRUPT_BASE 4