Skip to content
Snippets Groups Projects
Forked from Reform / reform-boundary-uboot
Source project has a limited visibility.
  • Wolfgang Denk's avatar
    495df3ba
    ARM: fix write*() I/O accessors · 495df3ba
    Wolfgang Denk authored
    
    Commit 3c0659b5 "ARM: Avoid compiler optimization for readb, writeb
    and friends." introduced I/O accessors with memory barriers.
    Unfortunately the new write*() accessors introduced a bug:
    
    The problem is that the argument "v" gets evaluated twice.  This
    breaks code like used here (from "drivers/net/dnet.c"):
    
    	for (i = 0; i < wrsz; i++)
    		writel(*bufp++, &dnet->regs->TX_DATA_FIFO);
    
    Use auxiliary variables to avoid such problems.
    
    Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
    Cc: Albert Aribaud <albert.aribaud@free.fr>
    Cc: Alexander Holler <holler@ahsoftware.de>
    Cc: Dirk Behme <dirk.behme@googlemail.com>
    495df3ba
    History
    ARM: fix write*() I/O accessors
    Wolfgang Denk authored
    
    Commit 3c0659b5 "ARM: Avoid compiler optimization for readb, writeb
    and friends." introduced I/O accessors with memory barriers.
    Unfortunately the new write*() accessors introduced a bug:
    
    The problem is that the argument "v" gets evaluated twice.  This
    breaks code like used here (from "drivers/net/dnet.c"):
    
    	for (i = 0; i < wrsz; i++)
    		writel(*bufp++, &dnet->regs->TX_DATA_FIFO);
    
    Use auxiliary variables to avoid such problems.
    
    Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
    Cc: Albert Aribaud <albert.aribaud@free.fr>
    Cc: Alexander Holler <holler@ahsoftware.de>
    Cc: Dirk Behme <dirk.behme@googlemail.com>