as3711.c (245f0db0de926601353776085e6f6a4c974c5615) as3711.c (e9b7ba7954fa8df6e021ee4bef084ed10eba2c2b)
1/*
2 * AS3711 PMIC MFC driver
3 *
4 * Copyright (C) 2012 Renesas Electronics Corporation
5 * Author: Guennadi Liakhovetski, <g.liakhovetski@gmx.de>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the version 2 of the GNU General Public License as

--- 94 unchanged lines hidden (view full) ---

103}
104
105static const struct regmap_config as3711_regmap_config = {
106 .reg_bits = 8,
107 .val_bits = 8,
108 .volatile_reg = as3711_volatile_reg,
109 .readable_reg = as3711_readable_reg,
110 .precious_reg = as3711_precious_reg,
1/*
2 * AS3711 PMIC MFC driver
3 *
4 * Copyright (C) 2012 Renesas Electronics Corporation
5 * Author: Guennadi Liakhovetski, <g.liakhovetski@gmx.de>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the version 2 of the GNU General Public License as

--- 94 unchanged lines hidden (view full) ---

103}
104
105static const struct regmap_config as3711_regmap_config = {
106 .reg_bits = 8,
107 .val_bits = 8,
108 .volatile_reg = as3711_volatile_reg,
109 .readable_reg = as3711_readable_reg,
110 .precious_reg = as3711_precious_reg,
111 .max_register = AS3711_MAX_REGS,
112 .num_reg_defaults_raw = AS3711_MAX_REGS,
111 .max_register = AS3711_MAX_REG,
112 .num_reg_defaults_raw = AS3711_NUM_REGS,
113 .cache_type = REGCACHE_RBTREE,
114};
115
116#ifdef CONFIG_OF
117static const struct of_device_id as3711_of_match[] = {
118 {.compatible = "ams,as3711",},
119 {}
120};

--- 120 unchanged lines hidden ---
113 .cache_type = REGCACHE_RBTREE,
114};
115
116#ifdef CONFIG_OF
117static const struct of_device_id as3711_of_match[] = {
118 {.compatible = "ams,as3711",},
119 {}
120};

--- 120 unchanged lines hidden ---