* [PATCH 10/7] mmc_spi: fix bug introduced in patch 3/7
@ 2009-03-12 14:49 Wolfgang Mües
2009-03-12 20:57 ` David Brownell
2009-03-15 11:48 ` Pierre Ossman
0 siblings, 2 replies; 3+ messages in thread
From: Wolfgang Mües @ 2009-03-12 14:49 UTC (permalink / raw)
To: Pierre Ossman
Cc: Andrew Morton, Matt Fleming, David Brownell, Mike Frysinger,
linux-kernel
From: Wolfgang Muees <wolfgang.mues@auerswald.de>
o Fix bug introduced in patch 3/7.
The first 3 bits of the data response may be undefined;
assuming that these bits are always 1 lead to unreliable
transmission.
Signed-off-by: Wolfgang Muees <wolfgang.mues@auerswald.de>
---
diff -uprN 2_6_29_rc7_patch9_speedup/drivers/mmc/host/mmc_spi.c 2_6_29_rc7_patch10_bugfix_of_patch3/drivers/mmc/host/mmc_spi.c
--- 2_6_29_rc7_patch9_speedup/drivers/mmc/host/mmc_spi.c 2009-03-12 14:35:27.000000000 +0100
+++ 2_6_29_rc7_patch10_bugfix_of_patch3/drivers/mmc/host/mmc_spi.c 2009-03-12 14:40:03.000000000 +0100
@@ -725,6 +725,9 @@ mmc_spi_writeblock(struct mmc_spi_host *
pattern |= scratch->status[2] << 8;
pattern |= scratch->status[3];
+ /* First 3 bit of pattern are undefined */
+ pattern |= 0xE0000000;
+
/* left-adjust to leading 0 bit */
while (pattern & 0x80000000)
pattern <<= 1;
---
regards
i. A. Wolfgang Mües
--
Auerswald GmbH & Co. KG
Hardware Development
Telefon: +49 (0)5306 9219 0
Telefax: +49 (0)5306 9219 94
E-Mail: Wolfgang.Mues@Auerswald.de
Web: http://www.auerswald.de
--------------------------------------------------------------
Auerswald GmbH & Co. KG, Vor den Grashöfen 1, 38162 Cremlingen
Registriert beim AG Braunschweig HRA 13289
p.h.G Auerswald Geschäftsführungsges. mbH
Registriert beim AG Braunschweig HRB 7463
Geschäftsführer: Dipl-Ing. Gerhard Auerswald
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 10/7] mmc_spi: fix bug introduced in patch 3/7
2009-03-12 14:49 [PATCH 10/7] mmc_spi: fix bug introduced in patch 3/7 Wolfgang Mües
@ 2009-03-12 20:57 ` David Brownell
2009-03-15 11:48 ` Pierre Ossman
1 sibling, 0 replies; 3+ messages in thread
From: David Brownell @ 2009-03-12 20:57 UTC (permalink / raw)
To: Wolfgang Mües
Cc: Pierre Ossman, Andrew Morton, Matt Fleming, Mike Frysinger,
linux-kernel
On Thursday 12 March 2009, Wolfgang Mües wrote:
> From: Wolfgang Muees <wolfgang.mues@auerswald.de>
>
> o Fix bug introduced in patch 3/7.
> The first 3 bits of the data response may be undefined;
> assuming that these bits are always 1 lead to unreliable
> transmission.
>
> Signed-off-by: Wolfgang Muees <wolfgang.mues@auerswald.de>
Could you just send an updated version of #3? Addressing
both this issue and the previous "comment is confusing" one.
I could ack such an update.
>
> ---
>
> diff -uprN 2_6_29_rc7_patch9_speedup/drivers/mmc/host/mmc_spi.c 2_6_29_rc7_patch10_bugfix_of_patch3/drivers/mmc/host/mmc_spi.c
> --- 2_6_29_rc7_patch9_speedup/drivers/mmc/host/mmc_spi.c 2009-03-12 14:35:27.000000000 +0100
> +++ 2_6_29_rc7_patch10_bugfix_of_patch3/drivers/mmc/host/mmc_spi.c 2009-03-12 14:40:03.000000000 +0100
> @@ -725,6 +725,9 @@ mmc_spi_writeblock(struct mmc_spi_host *
> pattern |= scratch->status[2] << 8;
> pattern |= scratch->status[3];
>
> + /* First 3 bit of pattern are undefined */
> + pattern |= 0xE0000000;
> +
> /* left-adjust to leading 0 bit */
> while (pattern & 0x80000000)
> pattern <<= 1;
>
> ---
> regards
>
> i. A. Wolfgang Mües
> --
> Auerswald GmbH & Co. KG
> Hardware Development
> Telefon: +49 (0)5306 9219 0
> Telefax: +49 (0)5306 9219 94
> E-Mail: Wolfgang.Mues@Auerswald.de
> Web: http://www.auerswald.de
>
> --------------------------------------------------------------
> Auerswald GmbH & Co. KG, Vor den Grashöfen 1, 38162 Cremlingen
> Registriert beim AG Braunschweig HRA 13289
> p.h.G Auerswald Geschäftsführungsges. mbH
> Registriert beim AG Braunschweig HRB 7463
> Geschäftsführer: Dipl-Ing. Gerhard Auerswald
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 10/7] mmc_spi: fix bug introduced in patch 3/7
2009-03-12 14:49 [PATCH 10/7] mmc_spi: fix bug introduced in patch 3/7 Wolfgang Mües
2009-03-12 20:57 ` David Brownell
@ 2009-03-15 11:48 ` Pierre Ossman
1 sibling, 0 replies; 3+ messages in thread
From: Pierre Ossman @ 2009-03-15 11:48 UTC (permalink / raw)
To: Wolfgang Mües
Cc: Andrew Morton, Matt Fleming, David Brownell, Mike Frysinger,
linux-kernel
[-- Attachment #1: Type: text/plain, Size: 415 bytes --]
I've applied patched 1,2 and 5. The other ones had comments and/or
wouldn't apply because of missing earlier patches. So please fix up the
things suggested and resend those patches.
Rgds
--
-- Pierre Ossman
WARNING: This correspondence is being monitored by the
Swedish government. Make sure your server uses encryption
for SMTP traffic and consider using PGP for end-to-end
encryption.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-03-15 11:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-12 14:49 [PATCH 10/7] mmc_spi: fix bug introduced in patch 3/7 Wolfgang Mües
2009-03-12 20:57 ` David Brownell
2009-03-15 11:48 ` Pierre Ossman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox