* [PATCH 0/2] minor cleanups for IORT patch set @ 2016-09-14 13:49 Hanjun Guo 2016-09-14 13:49 ` [PATCH 1/2] ACPI: IORT: minor cleanup for iort_match_node_callback() Hanjun Guo 2016-09-14 13:49 ` [PATCH 2/2] irqchip: gic-v3-its: keep the head file include in alphabetic order Hanjun Guo 0 siblings, 2 replies; 3+ messages in thread From: Hanjun Guo @ 2016-09-14 13:49 UTC (permalink / raw) To: linux-arm-kernel From: Hanjun Guo <hanjun.guo@linaro.org> Minor cleanup for IORT patches and no functional change, based on Marc's irq/irqchip-4.9 branch Hanjun Guo (2): ACPI: IORT: minor cleanup for iort_match_node_callback() irqchip: gic-v3-its: keep the head file include in alphabetic order drivers/acpi/arm64/iort.c | 10 +++------- drivers/irqchip/irq-gic-v3-its.c | 3 +-- 2 files changed, 4 insertions(+), 9 deletions(-) -- 1.7.12.4 ^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/2] ACPI: IORT: minor cleanup for iort_match_node_callback() 2016-09-14 13:49 [PATCH 0/2] minor cleanups for IORT patch set Hanjun Guo @ 2016-09-14 13:49 ` Hanjun Guo 2016-09-14 13:49 ` [PATCH 2/2] irqchip: gic-v3-its: keep the head file include in alphabetic order Hanjun Guo 1 sibling, 0 replies; 3+ messages in thread From: Hanjun Guo @ 2016-09-14 13:49 UTC (permalink / raw) To: linux-arm-kernel From: Hanjun Guo <hanjun.guo@linaro.org> Cleanup iort_match_node_callback() a little bit to reduce some lines of code, aslo fix the indentation in iort_scan_node(). Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org> --- drivers/acpi/arm64/iort.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/drivers/acpi/arm64/iort.c b/drivers/acpi/arm64/iort.c index 6b81746..2032005 100644 --- a/drivers/acpi/arm64/iort.c +++ b/drivers/acpi/arm64/iort.c @@ -132,7 +132,7 @@ static struct acpi_iort_node *iort_scan_node(enum acpi_iort_node_type type, if (iort_node->type == type && ACPI_SUCCESS(callback(iort_node, context))) - return iort_node; + return iort_node; iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort_node, iort_node->length); @@ -145,17 +145,15 @@ static acpi_status iort_match_node_callback(struct acpi_iort_node *node, void *context) { struct device *dev = context; - acpi_status status; + acpi_status status = AE_NOT_FOUND; if (node->type == ACPI_IORT_NODE_NAMED_COMPONENT) { struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL }; struct acpi_device *adev = to_acpi_device_node(dev->fwnode); struct acpi_iort_named_component *ncomp; - if (!adev) { - status = AE_NOT_FOUND; + if (!adev) goto out; - } status = acpi_get_name(adev->handle, ACPI_FULL_PATHNAME, &buf); if (ACPI_FAILURE(status)) { @@ -181,8 +179,6 @@ static acpi_status iort_match_node_callback(struct acpi_iort_node *node, */ status = pci_rc->pci_segment_number == pci_domain_nr(bus) ? AE_OK : AE_NOT_FOUND; - } else { - status = AE_NOT_FOUND; } out: return status; -- 1.7.12.4 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] irqchip: gic-v3-its: keep the head file include in alphabetic order 2016-09-14 13:49 [PATCH 0/2] minor cleanups for IORT patch set Hanjun Guo 2016-09-14 13:49 ` [PATCH 1/2] ACPI: IORT: minor cleanup for iort_match_node_callback() Hanjun Guo @ 2016-09-14 13:49 ` Hanjun Guo 1 sibling, 0 replies; 3+ messages in thread From: Hanjun Guo @ 2016-09-14 13:49 UTC (permalink / raw) To: linux-arm-kernel From: Hanjun Guo <hanjun.guo@linaro.org> The head file is strictly in alphabetic order now, so let's not be the rule breaker. And acpi_iort.h includes acpi.h, remove acpi.h here. Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org> --- drivers/irqchip/irq-gic-v3-its.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/irqchip/irq-gic-v3-its.c b/drivers/irqchip/irq-gic-v3-its.c index 35c851c..b1ff440 100644 --- a/drivers/irqchip/irq-gic-v3-its.c +++ b/drivers/irqchip/irq-gic-v3-its.c @@ -15,13 +15,12 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include <linux/acpi.h> +#include <linux/acpi_iort.h> #include <linux/bitmap.h> #include <linux/cpu.h> #include <linux/delay.h> #include <linux/interrupt.h> #include <linux/irqdomain.h> -#include <linux/acpi_iort.h> #include <linux/log2.h> #include <linux/mm.h> #include <linux/msi.h> -- 1.7.12.4 ^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-09-14 13:49 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-09-14 13:49 [PATCH 0/2] minor cleanups for IORT patch set Hanjun Guo 2016-09-14 13:49 ` [PATCH 1/2] ACPI: IORT: minor cleanup for iort_match_node_callback() Hanjun Guo 2016-09-14 13:49 ` [PATCH 2/2] irqchip: gic-v3-its: keep the head file include in alphabetic order Hanjun Guo
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).