Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: amphion: Fix firmware path to match linux-firmware

The path did not match the one it was submitted into linux-firmware
which prevented generic distribution from having working CODEC.

Fixes: 9f599f351e86 ("media: amphion: add vpu core driver")
Signed-off-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>

authored by

Nicolas Dufresne and committed by
Mauro Carvalho Chehab
dcff0b56 517f0883

+2 -2
+2 -2
drivers/media/platform/amphion/vpu_core.c
··· 826 826 827 827 static struct vpu_core_resources imx8q_enc = { 828 828 .type = VPU_CORE_TYPE_ENC, 829 - .fwname = "vpu/vpu_fw_imx8_enc.bin", 829 + .fwname = "amphion/vpu/vpu_fw_imx8_enc.bin", 830 830 .stride = 16, 831 831 .max_width = 1920, 832 832 .max_height = 1920, ··· 841 841 842 842 static struct vpu_core_resources imx8q_dec = { 843 843 .type = VPU_CORE_TYPE_DEC, 844 - .fwname = "vpu/vpu_fw_imx8_dec.bin", 844 + .fwname = "amphion/vpu/vpu_fw_imx8_dec.bin", 845 845 .stride = 256, 846 846 .max_width = 8188, 847 847 .max_height = 8188,