Commit 47bdfbb2 authored by Alessandro Rubini's avatar Alessandro Rubini Committed by Adam Wujek

trivial: sfp.c: make two function static

Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent 94d709f8
...@@ -26,12 +26,12 @@ int32_t sfp_in_db = 0; ...@@ -26,12 +26,12 @@ int32_t sfp_in_db = 0;
char sfp_pn[SFP_PN_LEN]; char sfp_pn[SFP_PN_LEN];
int sfp_present(void) static int sfp_present(void)
{ {
return !gpio_in(GPIO_SFP_DET); return !gpio_in(GPIO_SFP_DET);
} }
int sfp_read_part_id(char *part_id) static int sfp_read_part_id(char *part_id)
{ {
int i; int i;
uint8_t data, sum; uint8_t data, sum;
......
...@@ -23,12 +23,6 @@ extern int32_t sfp_alpha; ...@@ -23,12 +23,6 @@ extern int32_t sfp_alpha;
extern int32_t sfp_deltaTx; extern int32_t sfp_deltaTx;
extern int32_t sfp_deltaRx; extern int32_t sfp_deltaRx;
/* Returns 1 if there's a SFP transceiver inserted in the socket. */
int sfp_present(void);
/* Reads the part ID of the SFP from its configuration EEPROM */
int sfp_read_part_id(char *part_id);
/* Match plugged SFP with a DB entry */ /* Match plugged SFP with a DB entry */
int sfp_match(void); int sfp_match(void);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment