From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=quicinc.com header.i=@quicinc.com header.b="FS68Dad7" Received: from mx0a-0031df01.pphosted.com (mx0a-0031df01.pphosted.com [205.220.168.131]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 40BC8103 for ; Fri, 1 Dec 2023 15:13:14 -0800 (PST) Received: from pps.filterd (m0279865.ppops.net [127.0.0.1]) by mx0a-0031df01.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 3B1ILkiK024450; Fri, 1 Dec 2023 23:12:51 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=quicinc.com; h=message-id : date : mime-version : subject : to : cc : references : from : in-reply-to : content-type : content-transfer-encoding; s=qcppdkim1; bh=goxHMDJzy4I2gjVl5eV0+6u+MQXxMZXvxS+V3R1e0Kw=; b=FS68Dad7x3YOTvaS5n6OTRLNkzkOgMFd4nHr2HKOGV3gluRAfKLdk6qkFSA3qdDcRWCl 6e0d9mYtaMAY7Id1I5Lymgc5yKHaXgUpZ358zUFVGw6nX9B7i62NmB0nkvUyONh0Hj6a OUnucUR8AmTRTtL4X0h4Sjlc0OsHgfbq/wuq/fKAuY647kNDYrHxvgQ/aLLuZel2UTVG MDgpvcAL3QbakhAbqQyPIystwzIhQHN+WuYxToCfmFz97cQA759ZxhHu9Q5xIhC5DbSI 81WrsEfiBnsrk+03xNJ7/gITZ+L+NjSA+J4ilBBNSFr/69KPgF6zHIlr6qZMjFEmCNun jg== Received: from nalasppmta01.qualcomm.com (Global_NAT1.qualcomm.com [129.46.96.20]) by mx0a-0031df01.pphosted.com (PPS) with ESMTPS id 3uq3f7u60m-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 01 Dec 2023 23:12:51 +0000 Received: from nalasex01a.na.qualcomm.com (nalasex01a.na.qualcomm.com [10.47.209.196]) by NALASPPMTA01.qualcomm.com (8.17.1.5/8.17.1.5) with ESMTPS id 3B1NCott022479 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 1 Dec 2023 23:12:50 GMT Received: from [10.110.73.134] (10.80.80.8) by nalasex01a.na.qualcomm.com (10.47.209.196) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1118.40; Fri, 1 Dec 2023 15:12:49 -0800 Message-ID: Date: Fri, 1 Dec 2023 15:12:49 -0800 Precedence: bulk X-Mailing-List: linux-arm-msm@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.11.0 Subject: Re: [PATCH 08/17] drm/msm/mdp5: use drmm-managed allocation for mdp5_crtc Content-Language: en-US To: Dmitry Baryshkov , Rob Clark , Sean Paul , Marijn Suijten CC: Stephen Boyd , David Airlie , Daniel Vetter , Bjorn Andersson , , , References: <20230708010407.3871346-1-dmitry.baryshkov@linaro.org> <20230708010407.3871346-9-dmitry.baryshkov@linaro.org> From: Abhinav Kumar In-Reply-To: <20230708010407.3871346-9-dmitry.baryshkov@linaro.org> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit X-ClientProxiedBy: nasanex01b.na.qualcomm.com (10.46.141.250) To nalasex01a.na.qualcomm.com (10.47.209.196) X-QCInternal: smtphost X-Proofpoint-Virus-Version: vendor=nai engine=6200 definitions=5800 signatures=585085 X-Proofpoint-ORIG-GUID: V69zbPEVOTJqqUnlHn305g11j2LPgD-U X-Proofpoint-GUID: V69zbPEVOTJqqUnlHn305g11j2LPgD-U X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.272,Aquarius:18.0.997,Hydra:6.0.619,FMLib:17.11.176.26 definitions=2023-12-01_22,2023-11-30_01,2023-05-22_02 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 malwarescore=0 adultscore=0 spamscore=0 impostorscore=0 lowpriorityscore=0 phishscore=0 priorityscore=1501 mlxlogscore=972 bulkscore=0 clxscore=1015 mlxscore=0 suspectscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2311060000 definitions=main-2312010143 On 7/7/2023 6:03 PM, Dmitry Baryshkov wrote: > Change struct mdp5_crtc allocation to use drmm_crtc_alloc(). This > removes the need to perform any actions on CRTC destruction. > > Signed-off-by: Dmitry Baryshkov > --- > drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c | 30 +++++++++++------------ > 1 file changed, 15 insertions(+), 15 deletions(-) > Reviewed-by: Abhinav Kumar