diff options
author | 2020-05-18 18:09:53 +0200 | |
---|---|---|
committer | 2020-05-20 14:51:29 +0200 | |
commit | 39c91e18c1408e3a0ccb43d17dc983b8f2932f4c (patch) | |
tree | 4508fdf593664c00b0890fedb017ca7324785fd5 | |
parent | media: atomisp: fix a slab error due to a wrong free (diff) | |
download | linux-dev-39c91e18c1408e3a0ccb43d17dc983b8f2932f4c.tar.xz linux-dev-39c91e18c1408e3a0ccb43d17dc983b8f2932f4c.zip |
media: atomisp: fix the value for CamClk on Asus T101HA
The value returned by BIOS is 1. Fix it at the driver,
as it won't read this from EFI.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
-rw-r--r-- | drivers/staging/media/atomisp/pci/atomisp_gmin_platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/media/atomisp/pci/atomisp_gmin_platform.c b/drivers/staging/media/atomisp/pci/atomisp_gmin_platform.c index 12c15e070b14..9e9dc9a564c5 100644 --- a/drivers/staging/media/atomisp/pci/atomisp_gmin_platform.c +++ b/drivers/staging/media/atomisp/pci/atomisp_gmin_platform.c @@ -332,7 +332,7 @@ static struct gmin_cfg_var asus_vars[] = { {"OVTI2680:00_CsiLanes", "1"}, {"OVTI2680:00_CsiFmt", "15"}, {"OVTI2680:00_CsiBayer", "0"}, - {"OVTI2680:00_CamClk", "0"}, + {"OVTI2680:00_CamClk", "1"}, {}, }; |