Re: [PATCH v2 12/19] drm/msm/dp: move parity calculation to dp_utils

2024-02-12 Thread Paloma Arellano
On 2/10/2024 1:55 AM, Dmitry Baryshkov wrote: On Sat, 10 Feb 2024 at 03:52, Paloma Arellano wrote: Parity calculation is necessary for VSC SDP implementation. Therefore create new files dp_utils.c and dp_utils.h and move the parity calculating functions here. This ensures that they are

Re: [PATCH v2 12/19] drm/msm/dp: move parity calculation to dp_utils

2024-02-10 Thread Dmitry Baryshkov
On Sat, 10 Feb 2024 at 03:52, Paloma Arellano wrote: > > Parity calculation is necessary for VSC SDP implementation. Therefore > create new files dp_utils.c and dp_utils.h and move the parity > calculating functions here. This ensures that they are usable by SDP > programming in both dp_catalog.c

[PATCH v2 12/19] drm/msm/dp: move parity calculation to dp_utils

2024-02-09 Thread Paloma Arellano
Parity calculation is necessary for VSC SDP implementation. Therefore create new files dp_utils.c and dp_utils.h and move the parity calculating functions here. This ensures that they are usable by SDP programming in both dp_catalog.c and dp_audio.c Changes in v2: - Create new files