aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEliot Blennerhassett <eblennerhassett@audioscience.com>2010-07-02 11:24:40 +1200
committerTakashi Iwai <tiwai@suse.de>2010-07-06 08:25:34 +0200
commite5133dcc77a833f82d01b290991b0c3dfa0c0f1a (patch)
tree7e2070324a09c6d6016b7079c6016fac897f777f
parent8bc805c2ea78245e975ed78a7461f41142692ad9 (diff)
downloadalsa-driver-build-unstable-e5133dcc77a833f82d01b290991b0c3dfa0c0f1a.tar.gz
Updated alsa-kernel asihpi sources so patches are no longer required
Signed-off-by: Eliot Blennerhassett <eblennerhassett@audioscience.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--.gitignore2
-rw-r--r--pci/asihpi/Makefile3
-rw-r--r--pci/asihpi/hpidspcd.c2
-rw-r--r--pci/asihpi/hpidspcd.patch21
-rw-r--r--pci/asihpi/hpios.c2
-rw-r--r--pci/asihpi/hpios.patch35
6 files changed, 4 insertions, 61 deletions
diff --git a/.gitignore b/.gitignore
index 204b95266..db642b27a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -75,8 +75,6 @@ pci/ac97/ac97_bus.c
pci/ac97/ac97_codec.c
pci/ad1889.c
pci/ali5451/ali5451.c
-pci/asihpi/hpidspcd.c
-pci/asihpi/hpios.c
pci/atiixp.c
pci/atiixp_modem.c
pci/au88x0/au88x0.c
diff --git a/pci/asihpi/Makefile b/pci/asihpi/Makefile
index 95ee4498f..50ab325b3 100644
--- a/pci/asihpi/Makefile
+++ b/pci/asihpi/Makefile
@@ -5,7 +5,6 @@ endif
include $(SND_TOPDIR)/toplevel.config
include $(SND_TOPDIR)/Makefile.conf
-clean-files := hpidspcd.c hpios.c
EXTRA_CFLAGS = -I$(SND_TOPDIR)/alsa-kernel/pci/asihpi
@@ -13,5 +12,3 @@ include $(SND_TOPDIR)/alsa-kernel/pci/asihpi/Makefile
include $(SND_TOPDIR)/Rules.make
-hpidspcd.c: hpidspcd.patch $(SND_TOPDIR)/alsa-kernel/pci/asihpi/hpidspcd.c
-hpios.c: hpios.patch $(SND_TOPDIR)/alsa-kernel/pci/asihpi/hpios.c
diff --git a/pci/asihpi/hpidspcd.c b/pci/asihpi/hpidspcd.c
new file mode 100644
index 000000000..9b7d80a56
--- /dev/null
+++ b/pci/asihpi/hpidspcd.c
@@ -0,0 +1,2 @@
+#include "adriver.h"
+#include "../../alsa-kernel/pci/asihpi/hpidspcd.c"
diff --git a/pci/asihpi/hpidspcd.patch b/pci/asihpi/hpidspcd.patch
deleted file mode 100644
index 78316399d..000000000
--- a/pci/asihpi/hpidspcd.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- ../../alsa-kernel/pci/asihpi/hpidspcd.c 2010-04-21 18:36:16.613453111 +0200
-+++ hpidspcd.c 2010-04-21 18:41:26.104970371 +0200
-@@ -1,3 +1,4 @@
-+#include "adriver.h"
- /***********************************************************************/
- /*!
-
-@@ -73,8 +74,13 @@
- sprintf(fw_name, "asihpi/dsp%04x.bin", adapter);
- HPI_DEBUG_LOG(INFO, "requesting firmware for %s\n", fw_name);
-
-+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2 , 5 , 0))
-+ err = request_firmware(&ps_firmware, fw_name,
-+ ps_dsp_code->ps_dev->slot_name);
-+#else
- err = request_firmware(&ps_firmware, fw_name,
- &ps_dsp_code->ps_dev->dev);
-+#endif
- if (err != 0) {
- HPI_DEBUG_LOG(ERROR, "%d, request_firmware failed for %s\n",
- err, fw_name);
diff --git a/pci/asihpi/hpios.c b/pci/asihpi/hpios.c
new file mode 100644
index 000000000..3f151a303
--- /dev/null
+++ b/pci/asihpi/hpios.c
@@ -0,0 +1,2 @@
+#include "adriver.h"
+#include "../../alsa-kernel/pci/asihpi/hpios.c"
diff --git a/pci/asihpi/hpios.patch b/pci/asihpi/hpios.patch
deleted file mode 100644
index 1af0f7f50..000000000
--- a/pci/asihpi/hpios.patch
+++ /dev/null
@@ -1,35 +0,0 @@
---- ../../alsa-kernel/pci/asihpi/hpios.c 2010-04-21 18:36:16.617452068 +0200
-+++ hpios.c 2010-04-21 18:40:32.700700812 +0200
-@@ -1,3 +1,4 @@
-+#include "adriver.h"
- /******************************************************************************
-
- AudioScience HPI driver
-@@ -26,6 +27,7 @@
- #include <linux/delay.h>
- #include <linux/sched.h>
-
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2 , 6 , 14)
- void hpios_delay_micro_seconds(u32 num_micro_sec)
- {
- if ((usecs_to_jiffies(num_micro_sec) > 1) && !in_interrupt()) {
-@@ -38,6 +40,19 @@
- mdelay(num_micro_sec / 1000);
-
- }
-+#else
-+void hpios_delay_micro_seconds(u32 num_micro_sec)
-+{
-+ if ((num_micro_sec / 1000 >= 1000000 / HZ) && !in_interrupt()) {
-+ set_current_state(TASK_UNINTERRUPTIBLE);
-+ schedule_timeout((HZ * num_micro_sec + (HZ - 1)) / 1000000);
-+ } else if (num_micro_sec <= 2000)
-+ udelay(num_micro_sec);
-+ else
-+ mdelay(num_micro_sec / 1000);
-+
-+}
-+#endif
-
- void hpios_locked_mem_init(void)
- {