i2c: bcm2835: Move IRQ request after clock code in probe
authorAnnaliese McDermond <nh6z@nh6z.net>
Fri, 21 Jun 2019 10:52:49 +0000 (03:52 -0700)
committerWolfram Sang <wsa@the-dreams.de>
Wed, 26 Jun 2019 13:14:21 +0000 (15:14 +0200)
commit4a5cfa39465cad25dd736d7ceba8a5d32eea4ecc
tree6907a7ed22397a32bad4e14338792626bdefa75d
parent550113d4e9f5c7b62be760fc01178c9e0139c1f4
i2c: bcm2835: Move IRQ request after clock code in probe

If any of the clock code in the probe fails and returns, the IRQ
will not be freed.  Moving the IRQ request to last allows it to
be freed on any errors further up in the probe function.  devm_
calls can apparently not be used because there are some potential
race conditions that will arise.

Fixes: bebff81fb8b9 ("i2c: bcm2835: Model Divider in CCF")
Signed-off-by: Annaliese McDermond <nh6z@nh6z.net>
Acked-by: Stefan Wahren <wahrenst@gmx.net>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/busses/i2c-bcm2835.c