diff options
author | Jani Nikula <jani.nikula@intel.com> | 2022-11-23 15:09:32 +0200 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2022-11-29 14:14:51 +0200 |
commit | 11ffff9284261235cac7c9a0956943e017fe1a9f (patch) | |
tree | 5cbd725086b096a5e83fd91b4d4af3b57e3af185 /include | |
parent | a77a3ffa151b7a9b3f579203ff6b5844803acfd7 (diff) | |
download | linux-11ffff9284261235cac7c9a0956943e017fe1a9f.tar.gz |
drm/audio: make drm_audio_component.h self-contained
The file uses bool and struct completion, include the relevant headers.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20221123130932.3863985-1-jani.nikula@intel.com
Diffstat (limited to 'include')
-rw-r--r-- | include/drm/drm_audio_component.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/drm/drm_audio_component.h b/include/drm/drm_audio_component.h index 0d36bfd1a4cd..5a4cd1fa8e2a 100644 --- a/include/drm/drm_audio_component.h +++ b/include/drm/drm_audio_component.h @@ -4,6 +4,9 @@ #ifndef _DRM_AUDIO_COMPONENT_H_ #define _DRM_AUDIO_COMPONENT_H_ +#include <linux/completion.h> +#include <linux/types.h> + struct drm_audio_component; struct device; |