misc: eeprom: at24: register nvmem only after eeprom is ready to use
authorVadym Kochan <vadym.kochan@plvision.eu>
Mon, 31 Aug 2020 01:55:39 +0000 (04:55 +0300)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 1 Sep 2020 07:49:55 +0000 (09:49 +0200)
commit45df80d7605c25055a85fbc5a8446c81c6c0ca24
tree729a9d31b216fab6d1c06eaa97387a2e5da4477c
parent9123e3a74ec7b934a4a099e98af6a61c2f80bbf5
misc: eeprom: at24: register nvmem only after eeprom is ready to use

During nvmem_register() the nvmem core sends notifications when:

    - cell added
    - nvmem added

and during these notifications some callback func may access the nvmem
device, which will fail in case of at24 eeprom because regulator and pm
are enabled after nvmem_register().

Fixes: cd5676db0574 ("misc: eeprom: at24: support pm_runtime control")
Fixes: b20eb4c1f026 ("eeprom: at24: drop unnecessary label")
Cc: stable@vger.kernel.org
Signed-off-by: Vadym Kochan <vadym.kochan@plvision.eu>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
drivers/misc/eeprom/at24.c