]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
media: i2c: ov5640: Fix the order for enabling regulators
authorFabio Estevam <festevam@gmail.com>
Fri, 28 Jun 2019 11:00:35 +0000 (07:00 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Thu, 25 Jul 2019 10:37:14 +0000 (06:37 -0400)
According to the OV5640 datasheet the following sequence needs to be
followed when powering the OV5640 supplies:

- DOVDD
- AVDD
- DVDD

So follow this order inside the ov5640_supply_name[] array, so that
the regulator_bulk() functions can enable the regulator in the
correct sequence.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/i2c/ov5640.c

index afe7920557a8fad5b4c4b3d8beeeae460099417d..4cd246812ae22cf599213b7d476b8cfc87e6e1a7 100644 (file)
@@ -158,8 +158,8 @@ static const int ov5640_framerates[] = {
 /* regulator supplies */
 static const char * const ov5640_supply_name[] = {
        "DOVDD", /* Digital I/O (1.8V) supply */
-       "DVDD",  /* Digital Core (1.5V) supply */
        "AVDD",  /* Analog (2.8V) supply */
+       "DVDD",  /* Digital Core (1.5V) supply */
 };
 
 #define OV5640_NUM_SUPPLIES ARRAY_SIZE(ov5640_supply_name)