fixes typo port_managment_error -> port_management_error
Signed-off-by: Geoff Salmon <gsalmon@se-instruments.com>master
parent
89562f06fe
commit
d5af4196fc
2
clock.c
2
clock.c
|
@ -670,7 +670,7 @@ void clock_manage(struct clock *c, struct port *p, struct ptp_message *msg)
|
|||
case TRANSPARENT_CLOCK_DEFAULT_DATA_SET:
|
||||
case PRIMARY_DOMAIN:
|
||||
pid = port_identity(p);
|
||||
if (port_managment_error(pid, p, msg, NOT_SUPPORTED))
|
||||
if (port_management_error(pid, p, msg, NOT_SUPPORTED))
|
||||
pr_err("failed to send management error status");
|
||||
break;
|
||||
default:
|
||||
|
|
6
port.c
6
port.c
|
@ -1691,7 +1691,7 @@ int port_manage(struct port *p, struct port *ingress, struct ptp_message *msg)
|
|||
return 0;
|
||||
break;
|
||||
case SET:
|
||||
if (port_managment_error(p->portIdentity, ingress, msg,
|
||||
if (port_management_error(p->portIdentity, ingress, msg,
|
||||
NOT_SUPPORTED))
|
||||
pr_err("port %hu: management error failed", portnum(p));
|
||||
break;
|
||||
|
@ -1717,7 +1717,7 @@ int port_manage(struct port *p, struct port *ingress, struct ptp_message *msg)
|
|||
case TRANSPARENT_CLOCK_PORT_DATA_SET:
|
||||
case DELAY_MECHANISM:
|
||||
case LOG_MIN_PDELAY_REQ_INTERVAL:
|
||||
if (port_managment_error(p->portIdentity, ingress, msg,
|
||||
if (port_management_error(p->portIdentity, ingress, msg,
|
||||
NOT_SUPPORTED))
|
||||
pr_err("port %hu: management error failed", portnum(p));
|
||||
break;
|
||||
|
@ -1727,7 +1727,7 @@ int port_manage(struct port *p, struct port *ingress, struct ptp_message *msg)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int port_managment_error(struct PortIdentity pid, struct port *ingress,
|
||||
int port_management_error(struct PortIdentity pid, struct port *ingress,
|
||||
struct ptp_message *req, Enumeration16 error_id)
|
||||
{
|
||||
struct ptp_message *msg;
|
||||
|
|
2
port.h
2
port.h
|
@ -116,7 +116,7 @@ int port_manage(struct port *p, struct port *ingress, struct ptp_message *msg);
|
|||
* @param error_id One of the management error ID values.
|
||||
* @return Zero on success, non-zero otherwise.
|
||||
*/
|
||||
int port_managment_error(struct PortIdentity pid, struct port *ingress,
|
||||
int port_management_error(struct PortIdentity pid, struct port *ingress,
|
||||
struct ptp_message *req, Enumeration16 error_id);
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue