soc-integrator.c (d85ddd1318e66c0c2665dbfcbc21a8b66c9152aa) | soc-integrator.c (9f467393e2973f124661426953811b4758181088) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Copyright (C) 2014 Linaro Ltd. 4 * 5 * Author: Linus Walleij <linus.walleij@linaro.org> 6 */ 7#include <linux/init.h> 8#include <linux/io.h> --- 86 unchanged lines hidden (view full) --- 95 &dev_attr_build.attr, 96 NULL 97}; 98 99ATTRIBUTE_GROUPS(integrator); 100 101static int __init integrator_soc_init(void) 102{ | 1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Copyright (C) 2014 Linaro Ltd. 4 * 5 * Author: Linus Walleij <linus.walleij@linaro.org> 6 */ 7#include <linux/init.h> 8#include <linux/io.h> --- 86 unchanged lines hidden (view full) --- 95 &dev_attr_build.attr, 96 NULL 97}; 98 99ATTRIBUTE_GROUPS(integrator); 100 101static int __init integrator_soc_init(void) 102{ |
103 static struct regmap *syscon_regmap; | 103 struct regmap *syscon_regmap; |
104 struct soc_device *soc_dev; 105 struct soc_device_attribute *soc_dev_attr; 106 struct device_node *np; 107 struct device *dev; 108 u32 val; 109 int ret; 110 111 np = of_find_matching_node(NULL, integrator_cm_match); --- 38 unchanged lines hidden --- | 104 struct soc_device *soc_dev; 105 struct soc_device_attribute *soc_dev_attr; 106 struct device_node *np; 107 struct device *dev; 108 u32 val; 109 int ret; 110 111 np = of_find_matching_node(NULL, integrator_cm_match); --- 38 unchanged lines hidden --- |