From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 01BE2244687; Sun, 11 Jan 2026 20:58:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768165134; cv=none; b=Q+bG3Q4mqYNWUgOM4SStx3plIc8LeHaabvbEpmIxHsPNhdBEqWF3RUVPuJDwZJz8tccyJM6u2KVDia4k/n/+aRknoguEm0m9tI8P49VriLv0aN48cJKxcY29ZCQyQr4WGv8MKjrdlBJWW4oBHwKhFA9hbkn/iOTveJWqUrqbB80= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768165134; c=relaxed/simple; bh=I7BYBfTWV+ZrdQOUpX190/GGNn42UH6XtvpMHQmYu+0=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=rpcpa2ihSrkfyJ0oQ0mTX0wh5lsmJoOV5zvv92dqhvRkQePBMPXrZNlVAwC61zILYVIdUvTroIjNkuAG026hyaj1HyV96spHqK6XUlyjDVDNqvzui9Isd/TIAwRRwCQz26bsGZgD4QbgfayV9LvWAhJQ/E+3IFOoB3/0dpmBfT8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=o2nxf9ay; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="o2nxf9ay" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 454A2C4CEF7; Sun, 11 Jan 2026 20:58:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1768165133; bh=I7BYBfTWV+ZrdQOUpX190/GGNn42UH6XtvpMHQmYu+0=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=o2nxf9ayDDsNuHZp4o/VYCiEK1krS6c0fZGdYtCXyVqhXq8RlNPd7PHggdwVdN2vR kt7TqHeRAZF2UMVQyBoPc42cIdcYsgR81j9HrsTk8nKFBhfYEat7zSqijVk+V47IZi PKvKHEoHSi6eQtMePzT8LLM/KczJKhwsCuNKMX1c2YLerV5vaEIWGKSE6gy597uSYJ lPieP4I9EXmjGbuoghpuoe4vaWD3UIWbX8Qc7BAQo+CvLd6NTF+uchEqseS0zuyHP8 8pvbsIqrMWCBORVAbekB/JOaPXpUzvJ9iptnOw6kzRWbEmeUKTXogn4KUCpliIfsTP GOiVD+1/BEVWw== Message-ID: Date: Sun, 11 Jan 2026 20:58:46 +0000 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH 01/11] soc: qcom: ubwc: add missing include To: Dmitry Baryshkov , Bjorn Andersson , Konrad Dybcio , Rob Clark , Dmitry Baryshkov , Abhinav Kumar , Jessica Zhang , Sean Paul , Marijn Suijten , David Airlie , Simona Vetter , Akhil P Oommen , Vikash Garodia , Dikshita Agarwal , Mauro Carvalho Chehab Cc: Konrad Dybcio , linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, freedreno@lists.freedesktop.org, linux-media@vger.kernel.org References: <20260110-iris-ubwc-v1-0-dd70494dcd7b@oss.qualcomm.com> <20260110-iris-ubwc-v1-1-dd70494dcd7b@oss.qualcomm.com> From: Bryan O'Donoghue Content-Language: en-US In-Reply-To: <20260110-iris-ubwc-v1-1-dd70494dcd7b@oss.qualcomm.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 10/01/2026 19:37, Dmitry Baryshkov wrote: > The header has a function which calls pr_err(). Don't require users of > the header to include and include it here. > > Fixes: 87cfc79dcd60 ("drm/msm/a6xx: Resolve the meaning of UBWC_MODE") > Signed-off-by: Dmitry Baryshkov > --- > include/linux/soc/qcom/ubwc.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/linux/soc/qcom/ubwc.h b/include/linux/soc/qcom/ubwc.h > index 0a4edfe3d96d..f052e241736c 100644 > --- a/include/linux/soc/qcom/ubwc.h > +++ b/include/linux/soc/qcom/ubwc.h > @@ -8,6 +8,7 @@ > #define __QCOM_UBWC_H__ > > #include > +#include > #include > > struct qcom_ubwc_cfg_data { > > -- > 2.47.3 > > Reviewed-by: Bryan O'Donoghue