Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers: pinctrl: fix lookup when there are no states
Right now it is possible that some devices define 0 pinctrl states in devicetree, because pinctrl-N entries may still be optional for backward compatibility. If the programmer makes a mistake and forgets them, application could experience runtime crashes because pinctrl_lookup_states assumes you have at least one state, so it does not perform any bounds checking. Change the while condition so that it is skipped if states count is zero. Signed-off-by: Gerard Marull-Paretas <[email protected]>
- Loading branch information