phy_opsRegular
4.4: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
struct module *owner;
};
4.8: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode);
struct module *owner;
};
4.10: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode);
int (*reset)(struct phy *);
struct module *owner;
};
4.13: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode);
int (*reset)(struct phy *);
struct module *owner;
};
4.15: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
struct module *owner;
};
4.18: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
struct module *owner;
};
5.0: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
struct module *owner;
};
5.3: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
5.4: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
5.8: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
5.11: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
5.13: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*set_media)(struct phy *, enum phy_media);
int (*set_speed)(struct phy *, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
5.15: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*set_media)(struct phy *, enum phy_media);
int (*set_speed)(struct phy *, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
5.19: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*set_media)(struct phy *, enum phy_media);
int (*set_speed)(struct phy *, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
6.2: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*set_media)(struct phy *, enum phy_media);
int (*set_speed)(struct phy *, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
6.5: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*set_media)(struct phy *, enum phy_media);
int (*set_speed)(struct phy *, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
6.8: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*set_media)(struct phy *, enum phy_media);
int (*set_speed)(struct phy *, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
arm64: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
armhf: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
ppc64el: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
riscv64: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
aws: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
azure: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
gcp: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
lowlatency: ✅struct phy_ops {
int (*init)(struct phy *);
int (*exit)(struct phy *);
int (*power_on)(struct phy *);
int (*power_off)(struct phy *);
int (*set_mode)(struct phy *, enum phy_mode, int);
int (*configure)(struct phy *, union phy_configure_opts *);
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *);
int (*reset)(struct phy *);
int (*calibrate)(struct phy *);
void (*release)(struct phy *);
struct module *owner;
};
Regular
4.4 and 4.8 ⚠️int (*set_mode)(struct phy *, enum phy_mode)
4.8 and 4.10 ⚠️int (*reset)(struct phy *)
4.10 and 4.13 ✅
4.13 and 4.15 ⚠️int (*calibrate)(struct phy *)
4.15 and 4.18 ✅
4.18 and 5.0 ⚠️int (*configure)(struct phy *, union phy_configure_opts *)
int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *)
int (*set_mode)(struct phy *, enum phy_mode) ➡️ int (*set_mode)(struct phy *, enum phy_mode, int)
5.0 and 5.3 ⚠️void (*release)(struct phy *)
5.3 and 5.4 ✅
5.4 and 5.8 ✅
5.8 and 5.11 ✅
5.11 and 5.13 ⚠️int (*set_media)(struct phy *, enum phy_media)
int (*set_speed)(struct phy *, int)
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 ✅
amd64 and arm64 ✅
amd64 and armhf ✅
amd64 and ppc64el ✅
amd64 and riscv64 ✅
generic and aws ✅
generic and azure ✅
generic and gcp ✅
generic and lowlatency ✅