You've already forked gitified_old_clb_svn
15 lines
297 B
C
15 lines
297 B
C
/* SFP Detection / management functions */
|
|
|
|
#ifndef __SFP_H
|
|
#define __SFP_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/* Returns 1 if there's a SFP transceiver inserted in the socket. */
|
|
int sfp_present();
|
|
|
|
/* Reads the part ID of the SFP from its configuration EEPROM */
|
|
int sfp_read_part_id(char *part_id);
|
|
|
|
#endif
|