Re: [U-Boot] [PATCH 2/7] dm: pci: Add a function to write a BAR

2015-12-18 Thread Simon Glass
Hi Bin, On 8 December 2015 at 06:23, Bin Meng wrote: > Hi Simon, > > On Tue, Dec 1, 2015 at 12:11 PM, Simon Glass wrote: >> Add a driver-model version of the pci_write_bar32 function so that this is >> supported in the new API. >> >> Signed-off-by: Simon Glass >> --- >> >> drivers/pci/pci-ucla

Re: [U-Boot] [PATCH 2/7] dm: pci: Add a function to write a BAR

2015-12-08 Thread Bin Meng
Hi Simon, On Tue, Dec 1, 2015 at 12:11 PM, Simon Glass wrote: > Add a driver-model version of the pci_write_bar32 function so that this is > supported in the new API. > > Signed-off-by: Simon Glass > --- > > drivers/pci/pci-uclass.c | 8 > include/pci.h| 11 +++ >

[U-Boot] [PATCH 2/7] dm: pci: Add a function to write a BAR

2015-11-30 Thread Simon Glass
Add a driver-model version of the pci_write_bar32 function so that this is supported in the new API. Signed-off-by: Simon Glass --- drivers/pci/pci-uclass.c | 8 include/pci.h| 11 +++ 2 files changed, 19 insertions(+) diff --git a/drivers/pci/pci-uclass.c b/drive