Remove offsetof macro from list.h and use builtin macro defined in stddef.h to avoid multiple declaration error in gcc 4.7.
Signed-off-by: Maximilian Eschenbacher <[email protected]> Signed-off-by: Fjodor Schelichow <[email protected]> Signed-off-by: Johannes Stadlinger <[email protected]> --- tools/usb/usbip/libsrc/list.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/usb/usbip/libsrc/list.h b/tools/usb/usbip/libsrc/list.h index 8d0c936..a3dca5a 100644 --- a/tools/usb/usbip/libsrc/list.h +++ b/tools/usb/usbip/libsrc/list.h @@ -15,6 +15,8 @@ * using the generic single-entry routines. */ +#include <stddef.h> + struct list_head { struct list_head *next, *prev; }; @@ -120,7 +122,6 @@ static inline void list_del(struct list_head *entry) for (pos = (head)->next, n = pos->next; pos != (head); \ pos = n, n = pos->next) -#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) /** * container_of - cast a member of a structure out to the containing structure -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

