Re: [PATCH] PCI: Remove unused attr variable in pci_dma_configure

2018-12-15 Thread Christoph Hellwig
Thanks, applied. FYI, this was my editing of Robins patch that I though I had undone again, but only half so. Sorry.

[PATCH] PCI: Remove unused attr variable in pci_dma_configure

2018-12-14 Thread Nathan Chancellor
Clang warns: drivers/pci/pci-driver.c:1603:21: error: unused variable 'attr' [-Werror,-Wunused-variable] Commit e5361ca29f2f ("ACPI / scan: Refactor _CCA enforcement") removed attr's use and replaced it with its assigned value so it is no longer needed. Signed-off-by: Nathan Chancellor ---