summaryrefslogtreecommitdiff
path: root/snd-alpx/alpx_xdma.h
diff options
context:
space:
mode:
Diffstat (limited to 'snd-alpx/alpx_xdma.h')
-rw-r--r--snd-alpx/alpx_xdma.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/snd-alpx/alpx_xdma.h b/snd-alpx/alpx_xdma.h
new file mode 100644
index 0000000..3bb34c5
--- /dev/null
+++ b/snd-alpx/alpx_xdma.h
@@ -0,0 +1,21 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+* Support for Digigram AlpX PCI-e boards
+*
+* Copyright (c) 2024 Digigram Digital (info@digigram.com)
+*/
+#ifndef _ALPX_XDMA_H_
+#define _ALPX_XDMA_H_
+
+
+#include <linux/module.h>
+#include <linux/pci.h>
+#include <linux/platform_device.h>
+
+
+struct platform_device *alpx_xdma_register(struct pci_dev *pci_dev);
+
+void alpx_xdma_unregister(struct pci_dev *pci_dev,
+ struct platform_device *xdma_pdev);
+
+#endif /*_ALPX_XDMA_H_*/