ehci_platform_privRegular
4.4: ✅struct ehci_platform_priv {
struct clk * clks[3];
struct reset_control *rst;
struct phy **phys;
int num_phys;
bool reset_on_resume;
};
4.8: ✅struct ehci_platform_priv {
struct clk * clks[3];
struct reset_control * rsts[3];
struct phy **phys;
int num_phys;
bool reset_on_resume;
};
4.10: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control * rsts[4];
struct phy **phys;
int num_phys;
bool reset_on_resume;
};
4.13: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control * rsts[4];
struct phy **phys;
int num_phys;
bool reset_on_resume;
};
4.15: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
struct phy **phys;
int num_phys;
bool reset_on_resume;
};
4.18: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
};
5.0: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
};
5.3: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
};
5.4: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
};
5.8: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
bool quirk_poll;
struct timer_list poll_timer;
struct delayed_work poll_work;
};
5.11: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
bool quirk_poll;
struct timer_list poll_timer;
struct delayed_work poll_work;
};
5.13: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
bool quirk_poll;
struct timer_list poll_timer;
struct delayed_work poll_work;
};
5.15: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
bool quirk_poll;
struct timer_list poll_timer;
struct delayed_work poll_work;
};
5.19: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
bool quirk_poll;
struct timer_list poll_timer;
struct delayed_work poll_work;
};
6.2: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
bool quirk_poll;
struct timer_list poll_timer;
struct delayed_work poll_work;
};
6.5: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
bool quirk_poll;
struct timer_list poll_timer;
struct delayed_work poll_work;
};
6.8: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
bool quirk_poll;
struct timer_list poll_timer;
struct delayed_work poll_work;
};
arm64: Absent ⚠️
armhf: Absent ⚠️
ppc64el: Absent ⚠️
riscv64: Absent ⚠️
aws: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
};
azure: Absent ⚠️
gcp: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
};
lowlatency: ✅struct ehci_platform_priv {
struct clk * clks[4];
struct reset_control *rsts;
bool reset_on_resume;
};
Regular
4.4 and 4.8 ⚠️struct reset_control * rsts[3]
struct reset_control *rst
4.8 and 4.10 ⚠️struct clk * clks[3] ➡️ struct clk * clks[4]
struct reset_control * rsts[3] ➡️ struct reset_control * rsts[4]
4.10 and 4.13 ✅
4.13 and 4.15 ⚠️struct reset_control * rsts[4] ➡️ struct reset_control *rsts
4.15 and 4.18 ⚠️struct phy **phys
int num_phys
4.18 and 5.0 ✅
5.0 and 5.3 ✅
5.3 and 5.4 ✅
5.4 and 5.8 ⚠️bool quirk_poll
struct timer_list poll_timer
struct delayed_work poll_work
5.8 and 5.11 ✅
5.11 and 5.13 ✅
5.13 and 5.15 ✅
5.15 and 5.19 ✅
5.19 and 6.2 ✅
6.2 and 6.5 ✅
6.5 and 6.8 ✅
generic and aws ✅
generic and gcp ✅
generic and lowlatency ✅