On 7/30/23 18:19, Maximilian Luz wrote: [...]
diff --git a/drivers/firmware/qcom_qseecom.c b/drivers/firmware/qcom_qseecom.c new file mode 100644 index 000000000000..e9edd500c3d9 --- /dev/null +++ b/drivers/firmware/qcom_qseecom.c @@ -0,0 +1,128 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * Driver for Qualcomm Secure Execution Environment (SEE) interface (QSEECOM). + * Responsible for setting up and managing QSEECOM client devices. + * + * Copyright (C) 2023 Maximilian Luz <luzmaximilian@xxxxxxxxx> + */ +#include <linux/auxiliary_bus.h> +#include <linux/platform_device.h> +#include <linux/types.h>
This is missing a linux/slab.h include for kzalloc() and kfree(). Fixed for v6 as well. Kernel test robot caught this as well... I guess I need to look into building with more warnings enabled because I didn't catch that on my system. Regards Max