Changeset 4082


Ignore:
Timestamp:
02/17/08 11:50:35 (5 years ago)
Author:
laforge
Message:

s3cmci unaligned write fix (Mike Wester)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/src/target/kernel/2.6.24.x/patches/s3c_mci.patch

    r4080 r4082  
    344344+ 
    345345+               /* we might have an unaligned start of data */ 
    346 +               while ((unsigned long)host->pio_ptr & 0x03) 
     346+               while (((unsigned long)host->pio_ptr & 0x03) && fifo--) 
    347347+                       *(host->pio_ptr++) = readb(host->base + host->sdidata_b); 
    348348+ 
Note: See TracChangeset for help on using the changeset viewer.