Re: [PATCH] drm/bridge: ti-sn65dsi86: Fix off-by-one error in clock choice

2020-05-18 Thread Sam Ravnborg
Hi Douglas. On Mon, May 18, 2020 at 11:23:44AM -0700, Doug Anderson wrote: > Sam, > > On Fri, May 15, 2020 at 2:49 PM Rob Clark wrote: > > > > On Mon, May 4, 2020 at 9:32 PM Douglas Anderson > > wrote: > > > > > > If the rate in our table is _equal_ to the rate we want then it's OK > > > to

Re: [PATCH] drm/bridge: ti-sn65dsi86: Fix off-by-one error in clock choice

2020-05-18 Thread Doug Anderson
Sam, On Fri, May 15, 2020 at 2:49 PM Rob Clark wrote: > > On Mon, May 4, 2020 at 9:32 PM Douglas Anderson wrote: > > > > If the rate in our table is _equal_ to the rate we want then it's OK > > to pick it. It doesn't need to be greater than the one we want. > > > > Fixes: a095f15c00e2

Re: [PATCH] drm/bridge: ti-sn65dsi86: Fix off-by-one error in clock choice

2020-05-15 Thread Rob Clark
On Mon, May 4, 2020 at 9:32 PM Douglas Anderson wrote: > > If the rate in our table is _equal_ to the rate we want then it's OK > to pick it. It doesn't need to be greater than the one we want. > > Fixes: a095f15c00e2 ("drm/bridge: add support for sn65dsi86 bridge driver") > Signed-off-by:

Re: [PATCH] drm/bridge: ti-sn65dsi86: Fix off-by-one error in clock choice

2020-05-05 Thread Stephen Boyd
Quoting Douglas Anderson (2020-05-04 21:32:29) > If the rate in our table is _equal_ to the rate we want then it's OK > to pick it. It doesn't need to be greater than the one we want. > > Fixes: a095f15c00e2 ("drm/bridge: add support for sn65dsi86 bridge driver") > Signed-off-by: Douglas

[PATCH] drm/bridge: ti-sn65dsi86: Fix off-by-one error in clock choice

2020-05-04 Thread Douglas Anderson
If the rate in our table is _equal_ to the rate we want then it's OK to pick it. It doesn't need to be greater than the one we want. Fixes: a095f15c00e2 ("drm/bridge: add support for sn65dsi86 bridge driver") Signed-off-by: Douglas Anderson --- drivers/gpu/drm/bridge/ti-sn65dsi86.c | 2 +- 1