summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/include/sound/hwdep.h
diff options
context:
space:
mode:
authorSrikant Patnaik2015-01-11 12:28:04 +0530
committerSrikant Patnaik2015-01-11 12:28:04 +0530
commit871480933a1c28f8a9fed4c4d34d06c439a7a422 (patch)
tree8718f573808810c2a1e8cb8fb6ac469093ca2784 /ANDROID_3.4.5/include/sound/hwdep.h
parent9d40ac5867b9aefe0722bc1f110b965ff294d30d (diff)
downloadFOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.gz
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.bz2
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.zip
Moved, renamed, and deleted files
The original directory structure was scattered and unorganized. Changes are basically to make it look like kernel structure.
Diffstat (limited to 'ANDROID_3.4.5/include/sound/hwdep.h')
-rw-r--r--ANDROID_3.4.5/include/sound/hwdep.h82
1 files changed, 0 insertions, 82 deletions
diff --git a/ANDROID_3.4.5/include/sound/hwdep.h b/ANDROID_3.4.5/include/sound/hwdep.h
deleted file mode 100644
index 8c05e47a..00000000
--- a/ANDROID_3.4.5/include/sound/hwdep.h
+++ /dev/null
@@ -1,82 +0,0 @@
-#ifndef __SOUND_HWDEP_H
-#define __SOUND_HWDEP_H
-
-/*
- * Hardware dependent layer
- * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
- *
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
-
-#include <sound/asound.h>
-#include <linux/poll.h>
-
-struct snd_hwdep;
-
-/* hwdep file ops; all ops can be NULL */
-struct snd_hwdep_ops {
- long long (*llseek)(struct snd_hwdep *hw, struct file *file,
- long long offset, int orig);
- long (*read)(struct snd_hwdep *hw, char __user *buf,
- long count, loff_t *offset);
- long (*write)(struct snd_hwdep *hw, const char __user *buf,
- long count, loff_t *offset);
- int (*open)(struct snd_hwdep *hw, struct file * file);
- int (*release)(struct snd_hwdep *hw, struct file * file);
- unsigned int (*poll)(struct snd_hwdep *hw, struct file *file,
- poll_table *wait);
- int (*ioctl)(struct snd_hwdep *hw, struct file *file,
- unsigned int cmd, unsigned long arg);
- int (*ioctl_compat)(struct snd_hwdep *hw, struct file *file,
- unsigned int cmd, unsigned long arg);
- int (*mmap)(struct snd_hwdep *hw, struct file *file,
- struct vm_area_struct *vma);
- int (*dsp_status)(struct snd_hwdep *hw,
- struct snd_hwdep_dsp_status *status);
- int (*dsp_load)(struct snd_hwdep *hw,
- struct snd_hwdep_dsp_image *image);
-};
-
-struct snd_hwdep {
- struct snd_card *card;
- struct list_head list;
- int device;
- char id[32];
- char name[80];
- int iface;
-
-#ifdef CONFIG_SND_OSSEMUL
- char oss_dev[32];
- int oss_type;
- int ossreg;
-#endif
-
- struct snd_hwdep_ops ops;
- wait_queue_head_t open_wait;
- void *private_data;
- void (*private_free) (struct snd_hwdep *hwdep);
-
- struct mutex open_mutex;
- int used; /* reference counter */
- unsigned int dsp_loaded; /* bit fields of loaded dsp indices */
- unsigned int exclusive:1; /* exclusive access mode */
-};
-
-extern int snd_hwdep_new(struct snd_card *card, char *id, int device,
- struct snd_hwdep **rhwdep);
-
-#endif /* __SOUND_HWDEP_H */