Make sure port_capable() can be accessed by the signaling construct in port_signaling.c
Signed-off-by: Vedang Patel <[email protected]> Change-Id: I8be15fd8dabfd7938eb6f7dbbc1dd6ea5abee751 --- port.c | 3 +-- port_private.h | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/port.c b/port.c index ad9554f02a49..336b14424ed0 100644 --- a/port.c +++ b/port.c @@ -55,7 +55,6 @@ enum syfu_event { FUP_MATCH, }; -static int port_capable(struct port *p); static int port_is_ieee8021as(struct port *p); static void port_nrate_initialize(struct port *p); @@ -602,7 +601,7 @@ static int peer_prepare_and_send(struct port *p, struct ptp_message *msg, return 0; } -static int port_capable(struct port *p) +int port_capable(struct port *p) { if (!port_is_ieee8021as(p)) { /* Normal 1588 ports are always capable. */ diff --git a/port_private.h b/port_private.h index 593eb76fbe48..b0b2a5dcde09 100644 --- a/port_private.h +++ b/port_private.h @@ -157,6 +157,7 @@ void delay_req_prune(struct port *p); void fc_clear(struct foreign_clock *fc); void flush_delay_req(struct port *p); void flush_last_sync(struct port *p); +int port_capable(struct port *p); int port_clr_tmo(int fd); int port_delay_request(struct port *p); void port_disable(struct port *p); -- 2.7.3 _______________________________________________ Linuxptp-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/linuxptp-devel
