[U-Boot] [PATCH 7/8] drivers/block/ahci: Fix pci mapping bug

2009-02-03 Thread Becky Bruce
The code assumes that the pci bus address and the virtual address used to access a region are the same, but they might not be. Fix this assumption. Signed-off-by: Becky Bruce --- drivers/block/ahci.c |7 ++- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/block/ah

Re: [U-Boot] [PATCH 7/8] drivers/block/ahci: Fix pci mapping bug

2009-02-09 Thread Wolfgang Denk
Dear Becky Bruce, In message <1233706256-13878-8-git-send-email-bec...@kernel.crashing.org> you wrote: > The code assumes that the pci bus address and the virtual > address used to access a region are the same, but they might > not be. Fix this assumption. > > Signed-off-by: Becky Bruce > ---