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 TRANSPARENT_CLOCK_DEFAULT_DATA_SET:
|
||||||
case PRIMARY_DOMAIN:
|
case PRIMARY_DOMAIN:
|
||||||
pid = port_identity(p);
|
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");
|
pr_err("failed to send management error status");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
8
port.c
8
port.c
|
@ -1691,7 +1691,7 @@ int port_manage(struct port *p, struct port *ingress, struct ptp_message *msg)
|
||||||
return 0;
|
return 0;
|
||||||
break;
|
break;
|
||||||
case SET:
|
case SET:
|
||||||
if (port_managment_error(p->portIdentity, ingress, msg,
|
if (port_management_error(p->portIdentity, ingress, msg,
|
||||||
NOT_SUPPORTED))
|
NOT_SUPPORTED))
|
||||||
pr_err("port %hu: management error failed", portnum(p));
|
pr_err("port %hu: management error failed", portnum(p));
|
||||||
break;
|
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 TRANSPARENT_CLOCK_PORT_DATA_SET:
|
||||||
case DELAY_MECHANISM:
|
case DELAY_MECHANISM:
|
||||||
case LOG_MIN_PDELAY_REQ_INTERVAL:
|
case LOG_MIN_PDELAY_REQ_INTERVAL:
|
||||||
if (port_managment_error(p->portIdentity, ingress, msg,
|
if (port_management_error(p->portIdentity, ingress, msg,
|
||||||
NOT_SUPPORTED))
|
NOT_SUPPORTED))
|
||||||
pr_err("port %hu: management error failed", portnum(p));
|
pr_err("port %hu: management error failed", portnum(p));
|
||||||
break;
|
break;
|
||||||
|
@ -1727,8 +1727,8 @@ int port_manage(struct port *p, struct port *ingress, struct ptp_message *msg)
|
||||||
return 0;
|
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 *req, Enumeration16 error_id)
|
||||||
{
|
{
|
||||||
struct ptp_message *msg;
|
struct ptp_message *msg;
|
||||||
struct management_tlv *mgt;
|
struct management_tlv *mgt;
|
||||||
|
|
4
port.h
4
port.h
|
@ -116,8 +116,8 @@ int port_manage(struct port *p, struct port *ingress, struct ptp_message *msg);
|
||||||
* @param error_id One of the management error ID values.
|
* @param error_id One of the management error ID values.
|
||||||
* @return Zero on success, non-zero otherwise.
|
* @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);
|
struct ptp_message *req, Enumeration16 error_id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allocate a reply to a management message.
|
* Allocate a reply to a management message.
|
||||||
|
|
Loading…
Reference in New Issue