hpet_res          865 arch/x86/kernel/acpi/boot.c static struct resource *hpet_res __initdata;
hpet_res          919 arch/x86/kernel/acpi/boot.c 	hpet_res = memblock_alloc(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE,
hpet_res          921 arch/x86/kernel/acpi/boot.c 	if (!hpet_res)
hpet_res          923 arch/x86/kernel/acpi/boot.c 		      sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE);
hpet_res          925 arch/x86/kernel/acpi/boot.c 	hpet_res->name = (void *)&hpet_res[1];
hpet_res          926 arch/x86/kernel/acpi/boot.c 	hpet_res->flags = IORESOURCE_MEM;
hpet_res          927 arch/x86/kernel/acpi/boot.c 	snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE, "HPET %u",
hpet_res          930 arch/x86/kernel/acpi/boot.c 	hpet_res->start = hpet_address;
hpet_res          931 arch/x86/kernel/acpi/boot.c 	hpet_res->end = hpet_address + (1 * 1024) - 1;
hpet_res          942 arch/x86/kernel/acpi/boot.c 	if (!hpet_res)
hpet_res          945 arch/x86/kernel/acpi/boot.c 	return insert_resource(&iomem_resource, hpet_res);