[ipaccess] Change the name to be slightly better..
diff --git a/openbsc/include/openbsc/ipaccess.h b/openbsc/include/openbsc/ipaccess.h
index 3139381..8c12e59 100644
--- a/openbsc/include/openbsc/ipaccess.h
+++ b/openbsc/include/openbsc/ipaccess.h
@@ -82,7 +82,7 @@
 	u_int32_t start;
 } __attribute__((packed));
 
-struct sdp_header_entry_list {
+struct sdp_header_item {
 	struct sdp_header_entry header_entry;
 	struct llist_head entry;
 };
diff --git a/openbsc/src/ipaccess/ipaccess-firmware.c b/openbsc/src/ipaccess/ipaccess-firmware.c
index 2fb7bef..431fe31 100644
--- a/openbsc/src/ipaccess/ipaccess-firmware.c
+++ b/openbsc/src/ipaccess/ipaccess-firmware.c
@@ -92,7 +92,7 @@
 	/* look into each firmware now */
 	for (i = 0; i < ntohs(firmware_header->part_length) / PART_LENGTH; ++i) {
 		struct sdp_header_entry entry;
-		struct sdp_header_entry_list *header_entry;
+		struct sdp_header_item *header_entry;
 		unsigned int offset = base_offset + sizeof(struct sdp_firmware);
 		offset += i * 138;
 
@@ -131,7 +131,7 @@
 
 	for (i = 1; i < argc; ++i) {
 		struct sdp_header *header;
-		struct sdp_header_entry_list *sub_entry;
+		struct sdp_header_item *sub_entry;
 		struct llist_head entry;
 		INIT_LLIST_HEAD(&entry);