linux/drivers/pci/hotplug/cpci_hotplug_pci.c

// SPDX-License-Identifier: GPL-2.0+
/*
 * CompactPCI Hot Plug Driver PCI functions
 *
 * Copyright (C) 2002,2005 by SOMA Networks, Inc.
 *
 * All rights reserved.
 *
 * Send feedback to <[email protected]>
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/pci.h>
#include <linux/pci_hotplug.h>
#include <linux/proc_fs.h>
#include "../pci.h"
#include "cpci_hotplug.h"

#define MY_NAME

#define dbg(format, arg...)
#define err(format, arg...)
#define info(format, arg...)
#define warn(format, arg...)


u8 cpci_get_attention_status(struct slot *slot)
{}

int cpci_set_attention_status(struct slot *slot, int status)
{}

u16 cpci_get_hs_csr(struct slot *slot)
{}

int cpci_check_and_clear_ins(struct slot *slot)
{}

int cpci_check_ext(struct slot *slot)
{}

int cpci_clear_ext(struct slot *slot)
{}

int cpci_led_on(struct slot *slot)
{}

int cpci_led_off(struct slot *slot)
{}


/*
 * Device configuration functions
 */

int cpci_configure_slot(struct slot *slot)
{}

int cpci_unconfigure_slot(struct slot *slot)
{}