mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
Do not use BIT_ULL, because older kernels do not have it.
This commit is contained in:
parent
5c2757d581
commit
45c9f076bd
@ -260,8 +260,8 @@
|
|||||||
#define LNB_CMD_DISEQC 6
|
#define LNB_CMD_DISEQC 6
|
||||||
#define LNB_CMD_SCIF 7
|
#define LNB_CMD_SCIF 7
|
||||||
|
|
||||||
#define LNB_BUSY BIT_ULL(4)
|
#define LNB_BUSY (1ULL << 4)
|
||||||
#define LNB_TONE BIT_ULL(15)
|
#define LNB_TONE (1ULL << 15)
|
||||||
|
|
||||||
#define LNB_INTERRUPT_BASE 4
|
#define LNB_INTERRUPT_BASE 4
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user