1. 22 7月, 2014 3 次提交
  2. 21 7月, 2014 11 次提交
    • L
      mfd: max8925-i2c: Fix 'blank line after declarations' warning · 4ed8f718
      Lee Jones 提交于
      This is part of an effort to clean-up the MFD subsystem.
      
      WARNING: Missing a blank line after declarations
      +       int ret;
      +       ret = i2c_add_driver(&max8925_driver);
      
      total: 0 errors, 1 warnings, 275 lines checked
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      4ed8f718
    • L
      mfd: max77686: Fix 'line over 80 chars' warning · a31b0fa6
      Lee Jones 提交于
      This is part of an effort to clean-up the MFD subsystem.
      
      +WARNING: line over 80 characters
      +                                      &max77686_rtc_regmap_config);
      
      total: 0 errors, 1 warnings, 299 lines checked
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      a31b0fa6
    • J
      mfd: max77686: Remove unneeded OOM error message · 8a789b64
      Javier Martinez Canillas 提交于
      There is no need to print out-of-memory errors since this is already
      done by the memory management subsystem which even calls dump_stack().
      Signed-off-by: NJavier Martinez Canillas <javier.martinez@collabora.co.uk>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      8a789b64
    • J
      mfd: max77686: Make error checking consistent · c0e0fcda
      Javier Martinez Canillas 提交于
      Error checking across the driver is mostly consistent besides
      a few exceptions, so change these exceptions for consistency.
      Signed-off-by: NJavier Martinez Canillas <javier.martinez@collabora.co.uk>
      Reviewed-by: NKrzysztof Kozlowski <k.kozlowski@samsung.com>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      c0e0fcda
    • J
      mfd: max77686: Return correct error when pdata isn't found · b452d7b6
      Javier Martinez Canillas 提交于
      When platform data is not found an -EIO (I/O error) code is returned.
      This doesn't seem to be the correct error so better return -EINVAL
      (Invalid argument) which is what most drivers do in this case.
      Signed-off-by: NJavier Martinez Canillas <javier.martinez@collabora.co.uk>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      b452d7b6
    • J
      mfd: max77686: Make platform data over-rule DT · ede04c61
      Javier Martinez Canillas 提交于
      The function max77802_i2c_parse_dt_pdata() should only be called
      if there isn't already platform data for the device.
      Signed-off-by: NJavier Martinez Canillas <javier.martinez@collabora.co.uk>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      ede04c61
    • J
      mfd: max77686: Don't define dummy function if OF isn't enabled · 154409e4
      Javier Martinez Canillas 提交于
      When the CONFIG_OF option was not enabled, a dummy function
      max77686_i2c_parse_dt_pdata() was defined since this is called
      unconditionally on probe(). Just always define the real function
      and conditionally call it if CONFIG_OF is enabled instead.
      Signed-off-by: NJavier Martinez Canillas <javier.martinez@collabora.co.uk>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      154409e4
    • J
      mfd: max77686: Add power management support · 2b52b5d5
      Javier Martinez Canillas 提交于
      The driver doesn't have PM operations defined so add a suspend
      and resume function handlers to allow the PMIC IRQ to wakeup
      the system when it is put into a sleep state.
      Signed-off-by: NJavier Martinez Canillas <javier.martinez@collabora.co.uk>
      Reviewed-by: NKrzysztof Kozlowski <k.kozlowski@samsung.com>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      2b52b5d5
    • J
      mfd: max77686: Convert to use regmap_irq · 6f1c1e71
      Javier Martinez Canillas 提交于
      By using the generic IRQ support in the Register map API, it
      is possible to get rid max77686-irq.c and simplify the code.
      Suggested-by: NKrzysztof Kozlowski <k.kozlowski@samsung.com>
      Signed-off-by: NJavier Martinez Canillas <javier.martinez@collabora.co.uk>
      Reviewed-by: NDoug Anderson <dianders@chromium.org>
      Tested-by: NDoug Anderson <dianders@chromium.org>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      6f1c1e71
    • C
      mfd: sun6i-prcm: Add support for Allwinner A23 PRCM · 4eb9560b
      Chen-Yu Tsai 提交于
      The Allwinner A23 SoC has a PRCM unit like the previous A31 SoC.
      The differences are the AR100 clock can no longer be modified,
      the APB0 clock has different divisors, and some clock gates are
      gone.
      
      This patch adds a compatible with a modified subdevice list for
      the A23.
      Signed-off-by: NChen-Yu Tsai <wens@csie.org>
      Acked-by: NMaxime Ripard <maxime.ripard@free-electrons.com>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      4eb9560b
    • L
      mfd: ab8500-debugfs: BIG clean-up · 4362175d
      Lee Jones 提交于
      When checkpatch is run on ab8500-debugfs.c it screamed blue murder!
      
      This patch fixes up all of the errors/warnings reported:
      
      WARNING: line over 80 characters
      +		err = seq_printf(s, "  [0x%02X/0x%02X]: 0x%02X\n",
      
      WARNING: Prefer [subsystem eg: netdev]_info([subsystem]dev, ... then dev_info(dev, ... then pr_info(...  to printk(KERN_INFO ...
      +		printk(KERN_INFO" [0x%02X/0x%02X]: 0x%02X\n",
      
      WARNING: Prefer seq_puts to seq_printf
      +	seq_printf(s, AB8500_NAME_STRING " register values:\n");
      
      WARNING: Prefer seq_puts to seq_printf
      +	seq_printf(s, AB8500_NAME_STRING " register values:\n");
      
      WARNING: Prefer [subsystem eg: netdev]_info([subsystem]dev, ... then dev_info(dev, ... then pr_info(...  to printk(KERN_INFO ...
      +	printk(KERN_INFO"ab8500 register values:\n");
      
      WARNING: Prefer [subsystem eg: netdev]_info([subsystem]dev, ... then dev_info(dev, ... then pr_info(...  to printk(KERN_INFO ...
      +		printk(KERN_INFO" bank 0x%02X:\n", i);
      
      WARNING: externs should be avoided in .c files
      +extern int prcmu_abb_read(u8 slave, u8 reg, u8 *value, u8 size);
      
      WARNING: quoted string split across lines
      +	pr_info("Saving all ABB registers at \"ab8500_complete_register_dump\" "
      +		"for crash analyze.\n");
      
      WARNING: Prefer [subsystem eg: netdev]_err([subsystem]dev, ... then dev_err(dev, ... then pr_err(...  to printk(KERN_ERR ...
      +		printk(KERN_ERR "abx500_set_reg failed %d, %d", err, __LINE__);
      
      WARNING: Prefer seq_puts to seq_printf
      +	seq_printf(s, "name: number:  number of: wake:\n");
      
      WARNING: line over 80 characters
      +	return single_open(file, ab8500_print_modem_registers, inode->i_private);
      
      WARNING: line over 80 characters
      +	return single_open(file, ab8500_gpadc_btemp_ball_print, inode->i_private);
      
      WARNING: line over 80 characters
      +	return single_open(file, ab8500_gpadc_main_bat_v_print, inode->i_private);
      
      WARNING: line over 80 characters
      +	vbat_true_meas_convert = ab8500_gpadc_ad_to_voltage(gpadc, VBAT_TRUE_MEAS,
      
      WARNING: line over 80 characters
      +static int ab8540_gpadc_vbat_true_meas_and_ibat_print(struct seq_file *s, void *p)
      
      WARNING: line over 80 characters
      +static const struct file_operations ab8540_gpadc_vbat_true_meas_and_ibat_fops = {
      
      WARNING: line over 80 characters
      +		vmain_l, vmain_h, btemp_l, btemp_h, vbat_l, vbat_h, ibat_l, ibat_h);
      
      WARNING: quoted string split across lines
      +		dev_err(dev, "debugfs error input: "
      +			"should be egal to 1, 4, 8 or 16\n");
      
      WARNING: Missing a blank line after declarations
      +	char *s = b;
      +	if ((*s == '0') && ((*(s+1) == 'x') || (*(s+1) == 'X'))) {
      
      WARNING: simple_strtoul is obsolete, use kstrtoul instead
      +			loc.mask = simple_strtoul(b, &b, 0);
      
      WARNING: simple_strtol is obsolete, use kstrtol instead
      +			loc.shift = simple_strtol(b, &b, 0);
      
      WARNING: simple_strtoul is obsolete, use kstrtoul instead
      +	loc.bank = simple_strtoul(b, &b, 0);
      
      WARNING: simple_strtoul is obsolete, use kstrtoul instead
      +	loc.addr = simple_strtoul(b, &b, 0);
      
      WARNING: simple_strtoul is obsolete, use kstrtoul instead
      +		val = simple_strtoul(b, &b, 0);
      
      WARNING: quoted string split across lines
      +	pr_warn("HWREG request: %s, %s, addr=0x%08X, mask=0x%X, shift=%d"
      +			"value=0x%X\n", (write) ? "write" : "read",
      
      WARNING: Prefer [subsystem eg: netdev]_err([subsystem]dev, ... then dev_err(dev, ... then pr_err(...  to printk(KERN_ERR ...
      +		printk(KERN_ERR "sysfs_create_file failed %d\n", err);
      
      WARNING: Prefer [subsystem eg: netdev]_err([subsystem]dev, ... then dev_err(dev, ... then pr_err(...  to printk(KERN_ERR ...
      +		printk(KERN_ERR "request_threaded_irq failed %d, %lu\n",
      
      ERROR: code indent should use tabs where possible
      +                       err, user_val);$
      
      WARNING: please, no spaces at the start of a line
      +                       err, user_val);$
      
      WARNING: Missing a blank line after declarations
      +	struct resource *res;
      +	debug_bank = AB8500_MISC;
      
      ERROR: space required after that ',' (ctx:VxV)
      +		sizeof(*dev_attr)*num_irqs,GFP_KERNEL);
       		                          ^
      
      WARNING: return of an errno should typically be -ve (return -ENXIO)
      +		return ENXIO;
      
      WARNING: line over 80 characters
      +	file = debugfs_create_file("register-bank", (S_IRUGO | S_IWUSR | S_IWGRP),
      
      WARNING: line over 80 characters
      +	file = debugfs_create_file("register-address", (S_IRUGO | S_IWUSR | S_IWGRP),
      
      WARNING: line over 80 characters
      +	file = debugfs_create_file("register-value", (S_IRUGO | S_IWUSR | S_IWGRP),
      
      WARNING: line over 80 characters
      +	file = debugfs_create_file("irq-subscribe", (S_IRUGO | S_IWUSR | S_IWGRP),
      
      WARNING: line over 80 characters
      +	file = debugfs_create_file("irq-unsubscribe", (S_IRUGO | S_IWUSR | S_IWGRP),
      
      WARNING: line over 80 characters
      +	file = debugfs_create_file("all-modem-registers", (S_IRUGO | S_IWUSR | S_IWGRP),
      
      WARNING: line over 80 characters
      +	file = debugfs_create_file("main_charger_v", (S_IRUGO | S_IWUSR | S_IWGRP),
      
      WARNING: line over 80 characters
      +	file = debugfs_create_file("main_charger_c", (S_IRUGO | S_IWUSR | S_IWGRP),
      
      WARNING: line over 80 characters
      +	file = debugfs_create_file("usb_charger_c", (S_IRUGO | S_IWUSR | S_IWGRP),
      
      WARNING: line over 80 characters
      +		file = debugfs_create_file("xtal_temp", (S_IRUGO | S_IWUSR | S_IWGRP),
      
      WARNING: line over 80 characters
      +			ab8500_gpadc_dir, &plf->dev, &ab8540_gpadc_xtal_temp_fops);
      
      WARNING: line over 80 characters
      +		file = debugfs_create_file("vbattruemeas", (S_IRUGO | S_IWUSR | S_IWGRP),
      
      WARNING: line over 80 characters
      +		file = debugfs_create_file("otp_calib", (S_IRUGO | S_IWUSR | S_IWGRP),
      
      WARNING: line over 80 characters
      +			ab8500_gpadc_dir, &plf->dev, &ab8540_gpadc_otp_calib_fops);
      
      total: 2 errors, 44 warnings, 3230 lines checked
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      4362175d
  3. 11 7月, 2014 2 次提交
  4. 09 7月, 2014 24 次提交