Re: [U-Boot] [PATCH v2 1/5] pci: fix errant data types and corresponding access functions

2012-09-19 Thread Kumar Gala
On Aug 29, 2012, at 7:16 PM, Andrew Sharp wrote: In a couple of places, unsigned int and pci_config_*_dword were being used when u16 and _word should be used. Unsigned int was also being used in a couple of places that should be pci_addr_t. Signed-off-by: Andrew Sharp andywy...@gmail.com

Re: [U-Boot] [PATCH v2 1/5] pci: fix errant data types and corresponding access functions

2012-09-02 Thread Wolfgang Denk
Dear Andrew Sharp, In message 1346285792-32292-2-git-send-email-andywy...@gmail.com you wrote: In a couple of places, unsigned int and pci_config_*_dword were being used when u16 and _word should be used. Unsigned int was also being used in a couple of places that should be pci_addr_t.

[U-Boot] [PATCH v2 1/5] pci: fix errant data types and corresponding access functions

2012-08-29 Thread Andrew Sharp
In a couple of places, unsigned int and pci_config_*_dword were being used when u16 and _word should be used. Unsigned int was also being used in a couple of places that should be pci_addr_t. Signed-off-by: Andrew Sharp andywy...@gmail.com --- drivers/pci/pci.c |7 ---