]> git.baikalelectronics.ru Git - kernel.git/commit
i2c: busses with dynamic ids should start after fixed ids for DT
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Thu, 12 Mar 2015 16:17:59 +0000 (17:17 +0100)
committerWolfram Sang <wsa@the-dreams.de>
Wed, 18 Mar 2015 12:42:14 +0000 (13:42 +0100)
commit28721936392b1067706035b5fc30888b826c2eba
treedef8c38af9087e4afe4849ebc5abbda33f109fa3
parent2a55c728ad32c3296d87e2213f5d16122a62f335
i2c: busses with dynamic ids should start after fixed ids for DT

Make sure dynamic ids do not interfere with fixed ones and let them
start after the highest fixed id. This patch might cause different
bus-numbers than before for dynamic ids, however it fixes a bug. Assume:

- fixed id0 defers probe
- fixed id1 succeeds and registers a muxed bus with dynamic id
- muxed bus gets id0
- fixed id0 wants to probe again, but its fixed id is gone now
- fixed id0 probe fails

With this patch, the fixed ids are always reserved in the DT case.
For legacy board init, we already have a mechanism like this in
i2c_register_board_info().

Reported-by: Bob Feretich <bob.feretich@rafresearch.com>
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/i2c-core.c