Re: [PATCH] pci: use newly introduced devm_ioremap_resource()

2013-03-11 Thread Sergei Shtylyov
Hello. On 03/11/2013 06:24 PM, Silviu-Mihai Popescu wrote: Convert all uses of devm_request_and_ioremap() to the newly introduced devm_ioremap_resource() which provides more consistent error handling. devm_ioremap_resource() provides its own error messages so all explicit error messages can be

Re: [PATCH] pci: use newly introduced devm_ioremap_resource()

2013-03-11 Thread Gabor Juhos
2013.03.11. 16:24 keltezéssel, Silviu-Mihai Popescu írta: > Convert all uses of devm_request_and_ioremap() to the newly introduced > devm_ioremap_resource() which provides more consistent error handling. > > devm_ioremap_resource() provides its own error messages so all explicit > error messages c

[PATCH] pci: use newly introduced devm_ioremap_resource()

2013-03-11 Thread Silviu-Mihai Popescu
Convert all uses of devm_request_and_ioremap() to the newly introduced devm_ioremap_resource() which provides more consistent error handling. devm_ioremap_resource() provides its own error messages so all explicit error messages can be removed from the failure code paths. Signed-off-by: Silviu-Mi