[PATCH v5 1/7] pci: Introduce pci_register_io_range() helper function.
From: arnd@arndb.de (Arnd Bergmann)
Date: 2014-03-06 15:44:13
Also in:
linux-devicetree, linux-pci, lkml
From: arnd@arndb.de (Arnd Bergmann)
Date: 2014-03-06 15:44:13
Also in:
linux-devicetree, linux-pci, lkml
On Tuesday 04 March 2014, Liviu Dudau wrote:
+int __weak pci_register_io_range(phys_addr_t addr, resource_size_t size)
+{
+ return 0;
+}
+How about returning an error here? You don't actually register the range. Arnd