Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * Linux driver for M2Tech hiFace compatible devices
0004  *
0005  * Copyright 2012-2013 (C) M2TECH S.r.l and Amarula Solutions B.V.
0006  *
0007  * Authors:  Michael Trimarchi <michael@amarulasolutions.com>
0008  *           Antonio Ospite <ao2@amarulasolutions.com>
0009  *
0010  * The driver is based on the work done in TerraTec DMX 6Fire USB
0011  */
0012 
0013 #ifndef HIFACE_CHIP_H
0014 #define HIFACE_CHIP_H
0015 
0016 #include <linux/usb.h>
0017 #include <sound/core.h>
0018 
0019 struct pcm_runtime;
0020 
0021 struct hiface_chip {
0022     struct usb_device *dev;
0023     struct snd_card *card;
0024     struct pcm_runtime *pcm;
0025 };
0026 #endif /* HIFACE_CHIP_H */