<!-- Some styling for better description lists --><style type='text/css'>dt { font-weight: bold;float: left;display:inline;margin-right: 1em} dd { display:block; margin-left: 2em}</style>

   hverkuil: <u>mchehab</u>: can you apply this patch?
   <br> https://patchwork.linuxtv.org/project/linux-media/patch/7a17b41b-f7e2-268e-36fa-deae431454a4@xs4all.nl/
   <br> Without it I can't enable vidtv with 'make menuconfig'.
   mchehab: <u>hverkuil</u>: thanks for reporting it so quickly!
   <br> patch applied
   hverkuil: Thanks! I'll enable it for the next daily build.
   mchehab: ok, thanks!
   <br> btw, it will produce some pr_fmt() warnings at media_build
   <br> I'm considering changing pr_foo() to dev_foo() there
   <br> instead of fixing media_build
   hverkuil: it's very easy to fix media_build, so don't bother on my account.
   <br> <u>mchehab</u>: I'm getting warnings in vidtv when compiling for 32 bit. Replied to the cover letter with the warnings.
   <br> 64 bit is fine.
   <br> Also fixed media_build.
   mchehab: <u>hverkuil</u>: well, the thing is that I prefer using dev_foo instead of pr_foo :-)
   <br> anyway, at least some of them will be painful to replace
   <br> btw, I expect it may have troubles building on random archs
   <br> as the files aren't including kernel.h, but instead several headers
   <br> like linux/printk.h
   <br> I'll address the 32 bit ones
   <br> and probably do some cleanups at includes
   <br> 32-bit warnings fixed
   pinchartl: speaking of media_build, I've had a crash recently caused by dma-buf.h being copied from the media tree
   <br> I'm running kernel v5.4.60
   <br> and in the latest kernel dma_buf_ops has gained a few new operations
   <br> the dmabuf core can't be compiled as a module, so it runs with the v5.4.60 version of that structure
   <br> while media_build uses a newer version
   <br> that doesn't work well quite obviously