Re: [PATCH v2 21/44] x86: pinctrl: Set up itss in the probe() method

2020-07-12 Thread Bin Meng
On Wed, Jul 8, 2020 at 11:33 AM Simon Glass wrote: > > At present the itss is probed in the ofdata_to_platdata() method. This is > incorrect since itss is a child of p2sb which itself needs to probe the > pinctrl device. This means that p2sb is effectively not probed when the > itss is probed, so

Re: [PATCH v2 21/44] x86: pinctrl: Set up itss in the probe() method

2020-07-08 Thread Wolfgang Wallner
Hi Simon, -"Simon Glass" schrieb: - > Betreff: [PATCH v2 21/44] x86: pinctrl: Set up itss in the probe() method > > At present the itss is probed in the ofdata_to_platdata() method. This is > incorrect since itss is a child of p2sb which itself needs to probe the

[PATCH v2 21/44] x86: pinctrl: Set up itss in the probe() method

2020-07-07 Thread Simon Glass
At present the itss is probed in the ofdata_to_platdata() method. This is incorrect since itss is a child of p2sb which itself needs to probe the pinctrl device. This means that p2sb is effectively not probed when the itss is probed, so we get the wrong register address from p2sb. Fix this by movi