| .. | .. |
|---|
| 344 | 344 | #define KERNEL_CLIENT ((__force snd_seq_client_type_t) 2) |
|---|
| 345 | 345 | |
|---|
| 346 | 346 | /* event filter flags */ |
|---|
| 347 | | -#define SNDRV_SEQ_FILTER_BROADCAST (1<<0) /* accept broadcast messages */ |
|---|
| 348 | | -#define SNDRV_SEQ_FILTER_MULTICAST (1<<1) /* accept multicast messages */ |
|---|
| 349 | | -#define SNDRV_SEQ_FILTER_BOUNCE (1<<2) /* accept bounce event in error */ |
|---|
| 350 | | -#define SNDRV_SEQ_FILTER_USE_EVENT (1<<31) /* use event filter */ |
|---|
| 347 | +#define SNDRV_SEQ_FILTER_BROADCAST (1U<<0) /* accept broadcast messages */ |
|---|
| 348 | +#define SNDRV_SEQ_FILTER_MULTICAST (1U<<1) /* accept multicast messages */ |
|---|
| 349 | +#define SNDRV_SEQ_FILTER_BOUNCE (1U<<2) /* accept bounce event in error */ |
|---|
| 350 | +#define SNDRV_SEQ_FILTER_USE_EVENT (1U<<31) /* use event filter */ |
|---|
| 351 | 351 | |
|---|
| 352 | 352 | struct snd_seq_client_info { |
|---|
| 353 | 353 | int client; /* client number to inquire */ |
|---|