From: Stefan Weil Date: Thu, 28 Apr 2011 15:20:42 +0000 (+0200) Subject: Fix typos in comment (threshhold -> threshold, mapp -> map) X-Git-Tag: v0.15.0-rc0~288^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0d50d616fe42fdcbb95ee8000a9a6603cb8c2e34;p=thirdparty%2Fqemu.git Fix typos in comment (threshhold -> threshold, mapp -> map) Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- diff --git a/hw/xilinx_axidma.c b/hw/xilinx_axidma.c index e32534feaf7..571a5b0661c 100644 --- a/hw/xilinx_axidma.c +++ b/hw/xilinx_axidma.c @@ -134,10 +134,10 @@ static inline int stream_idle(struct AXIStream *s) static void stream_reset(struct AXIStream *s) { s->regs[R_DMASR] = DMASR_HALTED; /* starts up halted. */ - s->regs[R_DMACR] = 1 << 16; /* Starts with one in compl threshhold. */ + s->regs[R_DMACR] = 1 << 16; /* Starts with one in compl threshold. */ } -/* Mapp an offset addr into a channel index. */ +/* Map an offset addr into a channel index. */ static inline int streamid_from_addr(target_phys_addr_t addr) { int sid;