Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / drivers / pci / hotplug / cpqphp_nvram.h
blob918ff8dbfe62189be3a7025bc37012699adadf15
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * Compaq Hot Plug Controller Driver
5 * Copyright (C) 1995,2001 Compaq Computer Corporation
6 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
8 * All rights reserved.
10 * Send feedback to <greg@kroah.com>
14 #ifndef _CPQPHP_NVRAM_H
15 #define _CPQPHP_NVRAM_H
17 #ifndef CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM
19 static inline void compaq_nvram_init(void __iomem *rom_start)
21 return;
24 static inline int compaq_nvram_load(void __iomem *rom_start, struct controller *ctrl)
26 return 0;
29 static inline int compaq_nvram_store(void __iomem *rom_start)
31 return 0;
34 #else
36 void compaq_nvram_init(void __iomem *rom_start);
37 int compaq_nvram_load(void __iomem *rom_start, struct controller *ctrl);
38 int compaq_nvram_store(void __iomem *rom_start);
40 #endif
42 #endif