Spell out page_count in full.

Change-Id: I0e32eed566af4eee22a303291e5925014027b75d
diff --git a/inc/vmapi/hf/spci.h b/inc/vmapi/hf/spci.h
index d8bfd67..98fad84 100644
--- a/inc/vmapi/hf/spci.h
+++ b/inc/vmapi/hf/spci.h
@@ -305,12 +305,12 @@
 };
 
 static inline struct spci_memory_region_constituent
-spci_memory_region_constituent_init(uint64_t address, uint32_t pc)
+spci_memory_region_constituent_init(uint64_t address, uint32_t page_count)
 {
 	return (struct spci_memory_region_constituent){
 		.address_high = (uint32_t)(address >> 32),
 		.address_low = (uint32_t)address,
-		.page_count = pc,
+		.page_count = page_count,
 	};
 }