mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 07:03:03 +02:00
drm/msm/dp: pull I/O data out of msm_dp_catalog_private()
Having I/O regions inside a msm_dp_catalog_private() results in extra layers of one-line wrappers for accessing the data. Move I/O region base and size to the globally visible struct msm_dp_catalog. Reviewed-by: Stephen Boyd <swboyd@chromium.org> Tested-by: Stephen Boyd <swboyd@chromium.org> # sc7180-trogdor Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Patchwork: https://patchwork.freedesktop.org/patch/654319/ Link: https://lore.kernel.org/r/20250518-fd-dp-audio-fixup-v6-3-2f0ec3ec000d@oss.qualcomm.com
This commit is contained in:
parent
7b38d53d46
commit
56d802f61a
File diff suppressed because it is too large
Load Diff
|
|
@ -34,6 +34,18 @@
|
|||
struct msm_dp_catalog {
|
||||
bool wide_bus_en;
|
||||
u32 hw_revision;
|
||||
|
||||
void __iomem *ahb_base;
|
||||
size_t ahb_len;
|
||||
|
||||
void __iomem *aux_base;
|
||||
size_t aux_len;
|
||||
|
||||
void __iomem *link_base;
|
||||
size_t link_len;
|
||||
|
||||
void __iomem *p0_base;
|
||||
size_t p0_len;
|
||||
};
|
||||
|
||||
/* Debug module */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user