@@ -520,12 +520,13 @@ struct snd_pcm {
wait_queue_head_t open_wait;
void *private_data;
void (*private_free) (struct snd_pcm *pcm);
- bool internal; /* pcm is for internal use only */
- bool nonatomic; /* whole PCM operations are in non-atomic context */
- bool no_device_suspend; /* don't invoke device PM suspend */
#if IS_ENABLED(CONFIG_SND_PCM_OSS)
struct snd_pcm_oss oss;
#endif
+ /* bit field */
+ unsigned int internal:1; /* pcm is for internal use only */
+ unsigned int nonatomic:1; /* whole PCM operations are in non-atomic context */
+ unsigned int no_device_suspend:1; /* don't invoke device PM suspend */
};
/*