/* * linux/arch/metag/kernel/devtree.c * * Copyright (C) 2012 Imagination Technologies Ltd. * * Based on ARM version: * Copyright (C) 2009 Canonical Ltd. <jeremy.kerr@canonical.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include <linux/init.h> #include <linux/export.h> #include <linux/types.h> #include <linux/of_fdt.h> #include <asm/setup.h> #include <asm/page.h> #include <asm/mach/arch.h>
static const void * __init arch_get_next_mach(const char *const **match) { static const struct machine_desc *mdesc = __arch_info_begin; const struct machine_desc *m = mdesc; if (m >= __arch_info_end) return NULL; mdesc++; *match = m->dt_compat; return m; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rob Herring | 29 | 51.79% | 1 | 50.00% |
James Hogan | 27 | 48.21% | 1 | 50.00% |
Total | 56 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Rob Herring | 32 | 52.46% | 1 | 50.00% |
James Hogan | 29 | 47.54% | 1 | 50.00% |
Total | 61 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
James Hogan | 78 | 55.71% | 1 | 50.00% |
Rob Herring | 62 | 44.29% | 1 | 50.00% |
Total | 140 | 100.00% | 2 | 100.00% |