V3:
- Adds Reviewed-by where indicated - Laurent
- Adds a new patch for genpd cleanup. TBH I completely missed this so thanks ! - Laurent
- "media: qcom: camss: Fix V4L2 async notifier error path" stays the same fixes spalt in -next
Fixes: 51397a4ec75d ("media: qcom: Initialise V4L2 async notifier later")
- I like the suggesting of using a common fix for vfe-17x and vfe-480 however, I believe
we need to support multiple write-master/RDI => VCs in 17x which currently we only do
in vfe-480 so sharing the code between the two here right now, is n't possible.
- Included other suggestions on vfe-17x and vfe-480 - Laurent
- I didn't change the val |= 1 << CSI2_RX_CFG1_VC_MODE to BIT(2)
The reason for that is all of the code uses this odd bit-shifting and I'd rather do
the conversion from shifting to BIT(x) as a distinct series instead of piecemeal - bod