/* SPDX-License-Identifier: GPL-2.0-only */1/*******************************************************************************23AudioScience HPI driver4Copyright (C) 1997-2011 AudioScience Inc. <[email protected]>567Linux HPI ioctl, and shared module init functions8*******************************************************************************/910int asihpi_adapter_probe(struct pci_dev *pci_dev,11const struct pci_device_id *pci_id);12void asihpi_adapter_remove(struct pci_dev *pci_dev);13void __init asihpi_init(void);14void __exit asihpi_exit(void);1516int asihpi_hpi_release(struct file *file);1718long asihpi_hpi_ioctl(struct file *file, unsigned int cmd, unsigned long arg);1920/* This is called from hpifunc.c functions, called by ALSA21* (or other kernel process) In this case there is no file descriptor22* available for the message cache code23*/24void hpi_send_recv(struct hpi_message *phm, struct hpi_response *phr);2526#define HOWNER_KERNEL ((void *)-1)272829