The patch titled
pata_ns87415-initial-cut-at-87415-87560-ide-support fix
has been removed from the -mm tree. Its filename was
pata_ns87415-initial-cut-at-87415-87560-ide-support-fix.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
Subject: pata_ns87415-initial-cut-at-87415-87560-ide-support fix
From: Kyle McMartin <[EMAIL PROTECTED]>
u8 tmp is undefined, and port should be void __iomem * if we're going to
use pci-iomap accessors.
Works good otherwise, I was able to mount and copy a cd. Patch attached.
Queued a patch to move SUPERIO_IDE_MAX_RETRIES to <asm/superio.h>.
Cc: Alan Cox <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/ata/Kconfig | 2 +-
drivers/ata/pata_ns87415.c | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff -puN
drivers/ata/Kconfig~pata_ns87415-initial-cut-at-87415-87560-ide-support-fix
drivers/ata/Kconfig
---
a/drivers/ata/Kconfig~pata_ns87415-initial-cut-at-87415-87560-ide-support-fix
+++ a/drivers/ata/Kconfig
@@ -451,7 +451,7 @@ config PATA_NS87410
If unsure, say N.
config PATA_NS87415
- tristate "Nat Semi NS87410 PATA support (Experimental)"
+ tristate "Nat Semi NS87415 PATA support (Experimental)"
depends on PCI && EXPERIMENTAL
help
This option enables support for the National Semiconductor
diff -puN
drivers/ata/pata_ns87415.c~pata_ns87415-initial-cut-at-87415-87560-ide-support-fix
drivers/ata/pata_ns87415.c
---
a/drivers/ata/pata_ns87415.c~pata_ns87415-initial-cut-at-87415-87560-ide-support-fix
+++ a/drivers/ata/pata_ns87415.c
@@ -222,8 +222,9 @@ static int ns87415_check_atapi_dma(struc
* Work around chipset problems in the 87560 SuperIO chip
*/
-static u8 ns87560_read_buggy(unsigned long port)
+static u8 ns87560_read_buggy(void __iomem *port)
{
+ u8 tmp;
int retries = SUPERIO_IDE_MAX_RETRIES;
do {
tmp = ioread8(port);
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
fix-a-potential-null-pointer-dereference-in-uli526x_interrupt.patch
pa-risc-use-page-allocator-instead-of-slab-allocator.patch
parisc-extern-inline-static-inline.patch
during-vm-oom-condition-kill-all-threads-in-process-group.patch
bitops-introduce-lock-ops.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html