From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mx0a-0031df01.pphosted.com (mx0a-0031df01.pphosted.com [205.220.168.131]) (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 472344F88B for ; Wed, 10 Jan 2024 22:53:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=quicinc.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=quicinc.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=quicinc.com header.i=@quicinc.com header.b="JK4j1ybY" Received: from pps.filterd (m0279862.ppops.net [127.0.0.1]) by mx0a-0031df01.pphosted.com (8.17.1.24/8.17.1.24) with ESMTP id 40AMMxIv018666; Wed, 10 Jan 2024 22:52: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=oo6BsBmp2cXxpYoi2P/lDI8HFYX060ahpHoPHXNu2IY=; b=JK 4j1ybYDR6hbuvvEYkCwG5kSgyaGqnzSvN1Ou50rxJ1S7cktVlI3iV3dW5BpJdWoC HpV/TNBMCeRvK7qgn52g5CFH8qjv2OROWz3GYw0ojDys/JBaU36Fhb6eJU6M8r4D XOYe/dg5H/GbPZd8jkZnbTu8M/bdeaVTKfva/hJ6LIkd+p6/VsVzKcJpRbPXunKO XV7BbNBiGVI779Xm6qB+aQGJmH8madOdnVlVJu/L1BWdldMgi0yuVWImYGAM/QE5 W3hsOXJz24rhp/34OPEZAU7ETAI2MiwvNTKuvhSI0GjEv8MUiMTccC6TQviDrJPd IWQViKytfL4HVxLVAl8w== Received: from nalasppmta03.qualcomm.com (Global_NAT1.qualcomm.com [129.46.96.20]) by mx0a-0031df01.pphosted.com (PPS) with ESMTPS id 3vhvqw14ph-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 10 Jan 2024 22:52:50 +0000 (GMT) Received: from nalasex01a.na.qualcomm.com (nalasex01a.na.qualcomm.com [10.47.209.196]) by NALASPPMTA03.qualcomm.com (8.17.1.5/8.17.1.5) with ESMTPS id 40AMqnx3003603 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 10 Jan 2024 22:52:49 GMT Received: from [10.71.109.81] (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; Wed, 10 Jan 2024 14:52:48 -0800 Message-ID: Date: Wed, 10 Jan 2024 14:52:48 -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 1/5] drm/msm/dsi: do not store internal bridge pointer Content-Language: en-US To: Dmitry Baryshkov , Rob Clark , Sean Paul , Marijn Suijten CC: Stephen Boyd , David Airlie , Daniel Vetter , Bjorn Andersson , , , References: <20231009205727.2781802-1-dmitry.baryshkov@linaro.org> <20231009205727.2781802-2-dmitry.baryshkov@linaro.org> From: Abhinav Kumar In-Reply-To: <20231009205727.2781802-2-dmitry.baryshkov@linaro.org> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit X-ClientProxiedBy: nasanex01a.na.qualcomm.com (10.52.223.231) 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-GUID: etev77Iv3YrpOHW50D4osN6Cf_8y-xc_ X-Proofpoint-ORIG-GUID: etev77Iv3YrpOHW50D4osN6Cf_8y-xc_ 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-09_01,2023-12-07_01,2023-05-22_02 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 phishscore=0 mlxscore=0 mlxlogscore=946 adultscore=0 impostorscore=0 spamscore=0 lowpriorityscore=0 bulkscore=0 clxscore=1015 malwarescore=0 priorityscore=1501 suspectscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.19.0-2311290000 definitions=main-2401100182 On 10/9/2023 1:57 PM, Dmitry Baryshkov wrote: > Since the driver was switched to devm_drm_bridge_add(), there is no need > anymore to store the created bridge instance in struct msm_dsi. Drop > this field and pass data directly. > > Signed-off-by: Dmitry Baryshkov > --- > drivers/gpu/drm/msm/dsi/dsi.c | 8 +++++--- > drivers/gpu/drm/msm/dsi/dsi.h | 7 ++----- > drivers/gpu/drm/msm/dsi/dsi_manager.c | 19 ++++++++----------- > 3 files changed, 15 insertions(+), 19 deletions(-) > Reviewed-by: Abhinav Kumar