rpms/kernel/F-8 linux-2.6-input-fix-sync-loss-acer-aspire.patch, NONE, 1.1 kernel.spec, 1.321, 1.322 linux-2.6-firewire-lockdep.patch, 1.2, NONE linux-2.6-firewire-log-ohci-1.0-unsupported.patch, 1.1, NONE linux-2.6-firewire-multi-lun.patch, 1.1, NONE linux-2.6-firewire-ohci-1.0-iso-receive.patch, 1.4, NONE

Chuck Ebbert (cebbert) fedora-extras-commits at redhat.com
Fri Jan 18 21:04:50 UTC 2008


Author: cebbert

Update of /cvs/pkgs/rpms/kernel/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv29162

Modified Files:
	kernel.spec 
Added Files:
	linux-2.6-input-fix-sync-loss-acer-aspire.patch 
Removed Files:
	linux-2.6-firewire-lockdep.patch 
	linux-2.6-firewire-log-ohci-1.0-unsupported.patch 
	linux-2.6-firewire-multi-lun.patch 
	linux-2.6-firewire-ohci-1.0-iso-receive.patch 
Log Message:
* Fri Jan 18 2008 Chuck Ebbert <cebbert at redhat.com> 2.6.23.14-113
- Fix loss of mouse sync on some systems (#427697)
- Revert "libata: allow short SCSI commands for ATAPI devices" (F7#429353)


linux-2.6-input-fix-sync-loss-acer-aspire.patch:

--- NEW FILE linux-2.6-input-fix-sync-loss-acer-aspire.patch ---
Gitweb:     http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fb49161027e1938c34fc97d1136735e1d4209df6
Commit:     fb49161027e1938c34fc97d1136735e1d4209df6
Parent:     653e91d01fa4d39d2ed06a8c2096fef08b00ee7e
Author:     Dmitry Torokhov <dmitry.torokhov at gmail.com>
AuthorDate: Thu Jan 17 12:01:58 2008 -0500
Committer:  Dmitry Torokhov <dmitry.torokhov at gmail.com>
CommitDate: Thu Jan 17 12:01:58 2008 -0500

    Input: ALPS - fix sync loss on Acer Aspire 5720ZG
    
    The recently added support for Dell Volstro 1400 was causing protocol
    synchronization errors on Acer Aspire 5720ZG, fix it.
    
    Signed-off-by: Dmitry Torokhov <dtor at mail.ru>
---
 drivers/input/mouse/alps.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/input/mouse/alps.c b/drivers/input/mouse/alps.c
index 2b5ed11..b346a3b 100644
--- a/drivers/input/mouse/alps.c
+++ b/drivers/input/mouse/alps.c
@@ -54,7 +54,7 @@ static const struct alps_model_info alps_model_data[] = {
 	{ { 0x20, 0x02, 0x0e },	0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT }, /* XXX */
 	{ { 0x22, 0x02, 0x0a },	0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT },
 	{ { 0x22, 0x02, 0x14 }, 0xff, 0xff, ALPS_PASS | ALPS_DUALPOINT }, /* Dell Latitude D600 */
-	{ { 0x73, 0x02, 0x50 }, 0xcf, 0xff, ALPS_FW_BK_1 } /* Dell Vostro 1400 */
+	{ { 0x73, 0x02, 0x50 }, 0xcf, 0xcf, ALPS_FW_BK_1 } /* Dell Vostro 1400 */
 };
 
 /*


Index: kernel.spec
===================================================================
RCS file: /cvs/pkgs/rpms/kernel/F-8/kernel.spec,v
retrieving revision 1.321
retrieving revision 1.322
diff -u -r1.321 -r1.322
--- kernel.spec	18 Jan 2008 00:08:43 -0000	1.321
+++ kernel.spec	18 Jan 2008 21:04:05 -0000	1.322
@@ -661,6 +661,7 @@
 # Patch431: linux-2.6-netfilter-fix-null-deref-nf_nat_move_storage.patch
 Patch440: linux-2.6-sha_alignment.patch
 Patch450: linux-2.6-input-kill-stupid-messages.patch
+Patch451: linux-2.6-input-fix-sync-loss-acer-aspire.patch
 # Patch451: linux-2.6-input-alps-add-dell-vostro-1400.patch
 # Patch452: linux-2.6-input-alps-add-thinkpad-r61.patch
 Patch460: linux-2.6-serial-460800.patch
@@ -1263,6 +1264,8 @@
 ApplyPatch linux-2.6-sha_alignment.patch
 # The input layer spews crap no-one cares about.
 ApplyPatch linux-2.6-input-kill-stupid-messages.patch
+# Fix loss of sync caused by adding dell Vostro 1400
+ApplyPatch linux-2.6-input-fix-sync-loss-acer-aspire.patch
 # Add support for some new mouse configurations
 # ApplyPatch linux-2.6-input-alps-add-dell-vostro-1400.patch
 # ApplyPatch linux-2.6-input-alps-add-thinkpad-r61.patch
@@ -1321,7 +1324,7 @@
 ApplyPatch linux-2.6-libata-work-around-drq-1-err-1-for-tapes.patch
 ApplyPatch linux-2.6-libata-use-stuck-err-for-tapes.patch
 # allow 12-byte SCSI commands for ATAPI devices
-ApplyPatch linux-2.6-libata-scsi-allow-short-commands.patch
+# ApplyPatch linux-2.6-libata-scsi-allow-short-commands.patch
 # fix ahci reset
 ApplyPatch linux-2.6-libata-ahci-enable-ahci-mode-before-reset.patch
 
@@ -2047,6 +2050,10 @@
 
 
 %changelog
+* Fri Jan 18 2008 Chuck Ebbert <cebbert at redhat.com> 2.6.23.14-113
+- Fix loss of mouse sync on some systems (#427697)
+- Revert "libata: allow short SCSI commands for ATAPI devices" (F7#429353)
+
 * Thu Jan 17 2008 Chuck Ebbert <cebbert at redhat.com> 2.6.23.14-112
 - Set x86 CONFIG_PHYSICAL_START=0x400000
 


--- linux-2.6-firewire-lockdep.patch DELETED ---


--- linux-2.6-firewire-log-ohci-1.0-unsupported.patch DELETED ---


--- linux-2.6-firewire-multi-lun.patch DELETED ---


--- linux-2.6-firewire-ohci-1.0-iso-receive.patch DELETED ---




More information about the fedora-extras-commits mailing list