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

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'media/v5.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media

Pull media fixes from Mauro Carvalho Chehab:

- a debug warning for satellite tuning at dvb core was producing too
much noise

- a regression at hfi_parser on Venus driver

* tag 'media/v5.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media:
media: venus: hfi_parser: fix a regression in parser
media: dvb: warning about dvb frequency limits produces too much noise

+3 -3
+1 -1
drivers/media/dvb-core/dvb_frontend.c
··· 905 905 "DVB: adapter %i frontend %u frequency limits undefined - fix the driver\n", 906 906 fe->dvb->num, fe->id); 907 907 908 - dprintk("frequency interval: tuner: %u...%u, frontend: %u...%u", 908 + dev_dbg(fe->dvb->device, "frequency interval: tuner: %u...%u, frontend: %u...%u", 909 909 tuner_min, tuner_max, frontend_min, frontend_max); 910 910 911 911 /* If the standard is for satellite, convert frequencies to kHz */
+2 -2
drivers/media/platform/qcom/venus/hfi_helper.h
··· 560 560 561 561 struct hfi_capabilities { 562 562 u32 num_capabilities; 563 - struct hfi_capability *data; 563 + struct hfi_capability data[]; 564 564 }; 565 565 566 566 #define HFI_DEBUG_MSG_LOW 0x01 ··· 717 717 718 718 struct hfi_profile_level_supported { 719 719 u32 profile_count; 720 - struct hfi_profile_level *profile_level; 720 + struct hfi_profile_level profile_level[]; 721 721 }; 722 722 723 723 struct hfi_quality_vs_speed {