summaryrefslogtreecommitdiff
path: root/snes232
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /snes232
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'snes232')
-rw-r--r--snes232/Makefile-2.64
-rw-r--r--snes232/snes232-2.6.patch46
-rw-r--r--snes232/snes232_cvs.bb0
3 files changed, 0 insertions, 50 deletions
diff --git a/snes232/Makefile-2.6 b/snes232/Makefile-2.6
deleted file mode 100644
index 0719a25d0a..0000000000
--- a/snes232/Makefile-2.6
+++ /dev/null
@@ -1,4 +0,0 @@
-obj-m := snes232.o
-
-all:
- make -C $(KERNEL_SOURCE) SUBDIRS=`pwd`
diff --git a/snes232/snes232-2.6.patch b/snes232/snes232-2.6.patch
deleted file mode 100644
index cfefe488ad..0000000000
--- a/snes232/snes232-2.6.patch
+++ /dev/null
@@ -1,46 +0,0 @@
---- snes232.c~snes232-2.6.patch 2002-11-18 00:18:44.000000000 +0000
-+++ snes232.c 2004-10-10 01:15:10.000000000 +0100
-@@ -60,7 +60,7 @@
- BTN_B, /* 15 */
- };
-
--static void snes232_interrupt(struct serio *serio, unsigned char data, unsigned int flags)
-+static irqreturn_t snes232_interrupt(struct serio *serio, unsigned char data, unsigned int flags, struct pt_regs *regs)
- {
- struct snes232* snes232 = serio->private;
- struct input_dev *dev = (data & 0x40) ? &snes232->dev[1] : &snes232->dev[0];
-@@ -85,6 +85,10 @@
- input_report_key(dev, button_map[btn], down);
- break;
- }
-+
-+ input_sync(dev);
-+
-+ return IRQ_HANDLED;
- }
-
- /*
-@@ -133,10 +137,10 @@
- snes232->dev[d].absbit[0] = BIT(ABS_X) | BIT(ABS_Y);
-
- snes232->dev[d].name = snes232_name;
-- snes232->dev[d].idbus = BUS_RS232;
-- snes232->dev[d].idvendor = SERIO_SNES232;
-- snes232->dev[d].idproduct = 0x0001;
-- snes232->dev[d].idversion = 0x0100;
-+ snes232->dev[d].id.bustype = BUS_RS232;
-+ snes232->dev[d].id.vendor = SERIO_SNES232;
-+ snes232->dev[d].id.product = 0x0001;
-+ snes232->dev[d].id.version = 0x0100;
-
- for (i = 0; i < 2; i++) {
- snes232->dev[d].absmax[ABS_X+i] = 64;
-@@ -148,7 +152,7 @@
-
- input_register_device(&snes232->dev[d]);
-
-- printk(KERN_INFO "input%d: %s on serio%d\n", snes232->dev[d].number, snes232_name, serio->number);
-+ printk(KERN_INFO "%s: %s on %s\n", snes232->dev[d].name, snes232_name, serio->name);
- }
- }
-
diff --git a/snes232/snes232_cvs.bb b/snes232/snes232_cvs.bb
deleted file mode 100644
index e69de29bb2..0000000000
--- a/snes232/snes232_cvs.bb
+++ /dev/null