summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-08-03 15:42:23 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-08-05 07:04:22 +0000
commit6d097b831b0dc3a275976366a2dd9ad4c8d58c08 (patch)
tree6994a259304843258e2f877f7c9c8222ee05e146
parentfc726b9888bf8a883fc0d974bfc9a7f88d2af67f (diff)
downloadcoreboot-6d097b831b0dc3a275976366a2dd9ad4c8d58c08.tar.gz
coreboot-6d097b831b0dc3a275976366a2dd9ad4c8d58c08.tar.bz2
coreboot-6d097b831b0dc3a275976366a2dd9ad4c8d58c08.zip
include/device/azalia_device.h: Include <stdint.h>
This file only needs <stdint.h>. So replace <types.h> with <stdint.h>. Change-Id: Ib58532837941d5324b28bc2c607d70555ce9caee Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44134 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/include/device/azalia_device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/device/azalia_device.h b/src/include/device/azalia_device.h
index 90260913aec7..fe23c7021b3b 100644
--- a/src/include/device/azalia_device.h
+++ b/src/include/device/azalia_device.h
@@ -3,10 +3,10 @@
#ifndef DEVICE_AZALIA_H
#define DEVICE_AZALIA_H
-#include <types.h>
#include <acpi/acpi.h>
#include <device/mmio.h>
#include <device/device.h>
+#include <stdint.h>
void azalia_audio_init(struct device *dev);
extern struct device_operations default_azalia_audio_ops;