Re: [PATCH] drm/bridge: adv7533: make array clock_div_by_lanes static const

2022-01-12 Thread Robert Foss
On Sun, 9 Jan 2022 at 23:58, Laurent Pinchart wrote: > > Hi Colin, > > Thank you for the patch. > > On Sun, Jan 09, 2022 at 08:41:05PM +, Colin Ian King wrote: > > Don't populate the read-only array clock_div_by_lanes on the stack but > > instead it static const. Also makes the object code a

[PATCH] drm/bridge: adv7533: make array clock_div_by_lanes static const

2022-01-10 Thread Colin Ian King
Don't populate the read-only array clock_div_by_lanes on the stack but instead it static const. Also makes the object code a little smaller. Signed-off-by: Colin Ian King --- drivers/gpu/drm/bridge/adv7511/adv7533.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [PATCH] drm/bridge: adv7533: make array clock_div_by_lanes static const

2022-01-09 Thread Laurent Pinchart
Hi Colin, Thank you for the patch. On Sun, Jan 09, 2022 at 08:41:05PM +, Colin Ian King wrote: > Don't populate the read-only array clock_div_by_lanes on the stack but > instead it static const. Also makes the object code a little smaller. > > Signed-off-by: Colin Ian King > --- >