virtual_root.c (75bf465f0bc33e9b776a46d6a1b9b990f5fb7c37) | virtual_root.c (f81f335a56a8e90d5cac38b79661e6fbf35249f1) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Virtual EISA root driver. 4 * Acts as a placeholder if we don't have a proper EISA bridge. 5 * 6 * (C) 2003 Marc Zyngier <maz@wild-wind.fr.eu.org> 7 */ 8 9#include <linux/kernel.h> 10#include <linux/platform_device.h> 11#include <linux/eisa.h> 12#include <linux/module.h> 13#include <linux/moduleparam.h> 14#include <linux/init.h> 15 | 1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Virtual EISA root driver. 4 * Acts as a placeholder if we don't have a proper EISA bridge. 5 * 6 * (C) 2003 Marc Zyngier <maz@wild-wind.fr.eu.org> 7 */ 8 9#include <linux/kernel.h> 10#include <linux/platform_device.h> 11#include <linux/eisa.h> 12#include <linux/module.h> 13#include <linux/moduleparam.h> 14#include <linux/init.h> 15 |
16#if defined(CONFIG_ALPHA_JENSEN) || defined(CONFIG_EISA_VLB_PRIMING) | 16#if defined(CONFIG_EISA_VLB_PRIMING) |
17#define EISA_FORCE_PROBE_DEFAULT 1 18#else 19#define EISA_FORCE_PROBE_DEFAULT 0 20#endif 21 22static int force_probe = EISA_FORCE_PROBE_DEFAULT; 23static void virtual_eisa_release (struct device *); 24 --- 48 unchanged lines hidden --- | 17#define EISA_FORCE_PROBE_DEFAULT 1 18#else 19#define EISA_FORCE_PROBE_DEFAULT 0 20#endif 21 22static int force_probe = EISA_FORCE_PROBE_DEFAULT; 23static void virtual_eisa_release (struct device *); 24 --- 48 unchanged lines hidden --- |