commit | 41f71629b4c432f8dd47d70ace813be5f79d4d75 | [log] [tgz] |
---|---|---|
author | Deepak R Varma <mh12gx2825@gmail.com> | Thu Nov 05 23:29:28 2020 +0530 |
committer | Thierry Reding <treding@nvidia.com> | Tue Nov 10 20:49:57 2020 +0100 |
tree | ec752bd702c2759fe1339dde7e3b303e8a7ff207 | |
parent | 5c1d644c09dbc13b2dc652435786e42b05ac1bb7 [diff] |
drm/tegra: replace idr_init() by idr_init_base() idr_init() uses base 0 which is an invalid identifier for this driver. The new function idr_init_base allows IDR to set the ID lookup from base 1. This avoids all lookups that otherwise starts from 0 since 0 is always unused. References: commit 6ce711f27500 ("idr: Make 1-based IDRs more efficient") Signed-off-by: Deepak R Varma <mh12gx2825@gmail.com> Signed-off-by: Thierry Reding <treding@nvidia.com>