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/v6.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media

Pull media fixes from Mauro Carvalho Chehab:

- fix a clang build issue with mediatec vcodec

- add missing variable initialization to dib3000mb write function

* tag 'media/v6.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media:
media: mediatek: vcodec: mark vdec_vp9_slice_map_counts_eob_coef noinline
media: dvb-frontends: dib3000mb: fix uninit-value in dib3000_write_reg

+3 -2
+1 -1
drivers/media/dvb-frontends/dib3000mb.c
··· 51 51 static int dib3000_read_reg(struct dib3000_state *state, u16 reg) 52 52 { 53 53 u8 wb[] = { ((reg >> 8) | 0x80) & 0xff, reg & 0xff }; 54 - u8 rb[2]; 54 + u8 rb[2] = {}; 55 55 struct i2c_msg msg[] = { 56 56 { .addr = state->config.demod_address, .flags = 0, .buf = wb, .len = 2 }, 57 57 { .addr = state->config.demod_address, .flags = I2C_M_RD, .buf = rb, .len = 2 },
+2 -1
drivers/media/platform/mediatek/vcodec/decoder/vdec/vdec_vp9_req_lat_if.c
··· 1188 1188 return ret; 1189 1189 } 1190 1190 1191 - static 1191 + /* clang stack usage explodes if this is inlined */ 1192 + static noinline_for_stack 1192 1193 void vdec_vp9_slice_map_counts_eob_coef(unsigned int i, unsigned int j, unsigned int k, 1193 1194 struct vdec_vp9_slice_frame_counts *counts, 1194 1195 struct v4l2_vp9_frame_symbol_counts *counts_helper)