libfdt: Remove unused _ptr_offset() function

The (internal use) function _ptr_offset() is never used.  Delete it.
This commit is contained in:
David Gibson 2006-12-12 12:48:15 +11:00
parent 94993f4fc4
commit 6ae4de5c81
1 changed files with 0 additions and 7 deletions

View File

@ -26,13 +26,6 @@
#define memeq(p, q, n) (memcmp((p), (q), (n)) == 0)
#define streq(p, q) (strcmp((p), (q)) == 0)
static inline int _ptr_offset(struct fdt_header *fdt, void *p)
{
void *blob = fdt;
return (p - blob) - fdt_off_dt_struct(fdt);
}
int _fdt_check_header(const struct fdt_header *fdt);
uint32_t _fdt_next_tag(const struct fdt_header *fdt, int startoffset, int *nextoffset);
const char *_fdt_find_string(const char *strtab, int tabsize, const char *s);