Searched defs:tl (Results 1 - 1 of 1) sorted by relevance

/include/linux/
H A Dipmi-fru.h53 struct fru_type_length tl[0]; /* type-length stuff follows */ member in struct:fru_board_info_area
86 static inline int fru_type(struct fru_type_length *tl) argument
88 return tl->type_length & 0xc0;
91 static inline int fru_length(struct fru_type_length *tl) argument
93 return (tl->type_length & 0x3f) + 1; /* len of whole record */
97 static inline int fru_strlen(struct fru_type_length *tl) argument
99 return fru_length(tl) - 1;
102 static inline char *fru_strcpy(char *dest, struct fru_type_length *tl) argument
104 int len = fru_strlen(tl);
105 memcpy(dest, tl
110 fru_next_tl(struct fru_type_length *tl) argument
115 fru_is_eof(struct fru_type_length *tl) argument
[all...]

Completed in 51 milliseconds