Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mrst: Fixed indentation issues

Fixed indentation issues reported by checkpatch script in
mrst related files.

Signed-off-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Link: http://lkml.kernel.org/r/1382049336-21316-3-git-send-email-david.a.cohen@linux.intel.com
Signed-off-by: David Cohen <david.a.cohen@linux.intel.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>

authored by

Kuppuswamy Sathyanarayanan and committed by
H. Peter Anvin
d8059302 001d4c7a

+15 -12
+2 -1
arch/x86/platform/mrst/early_printk_mrst.c
··· 219 219 } 220 220 221 221 /* Early SPI only uses polling mode */ 222 - static void early_mrst_spi_write(struct console *con, const char *str, unsigned n) 222 + static void early_mrst_spi_write(struct console *con, const char *str, 223 + unsigned n) 223 224 { 224 225 int i; 225 226
+13 -11
arch/x86/platform/mrst/mrst.c
··· 131 131 int i; 132 132 if (hint < sfi_mtimer_num) { 133 133 if (!sfi_mtimer_usage[hint]) { 134 - pr_debug("hint taken for timer %d irq %d\n",\ 134 + pr_debug("hint taken for timer %d irq %d\n", 135 135 hint, sfi_mtimer_array[hint].irq); 136 136 sfi_mtimer_usage[hint] = 1; 137 137 return &sfi_mtimer_array[hint]; ··· 679 679 /* tc35876x DSI-LVDS bridge chip and panel platform data */ 680 680 static void *tc35876x_platform_data(void *data) 681 681 { 682 - static struct tc35876x_platform_data pdata; 682 + static struct tc35876x_platform_data pdata; 683 683 684 - /* gpio pins set to -1 will not be used by the driver */ 685 - pdata.gpio_bridge_reset = get_gpio_by_name("LCMB_RXEN"); 686 - pdata.gpio_panel_bl_en = get_gpio_by_name("6S6P_BL_EN"); 687 - pdata.gpio_panel_vadd = get_gpio_by_name("EN_VREG_LCD_V3P3"); 684 + /* gpio pins set to -1 will not be used by the driver */ 685 + pdata.gpio_bridge_reset = get_gpio_by_name("LCMB_RXEN"); 686 + pdata.gpio_panel_bl_en = get_gpio_by_name("6S6P_BL_EN"); 687 + pdata.gpio_panel_vadd = get_gpio_by_name("EN_VREG_LCD_V3P3"); 688 688 689 - return &pdata; 689 + return &pdata; 690 690 } 691 691 692 692 static const struct devs_id __initconst device_ids[] = { ··· 729 729 730 730 static void __init intel_scu_device_register(struct platform_device *pdev) 731 731 { 732 - if(ipc_next_dev == MAX_IPCDEVS) 732 + if (ipc_next_dev == MAX_IPCDEVS) 733 733 pr_err("too many SCU IPC devices"); 734 734 else 735 735 ipc_devs[ipc_next_dev++] = pdev; ··· 872 872 873 873 while (dev->name[0]) { 874 874 if (dev->type == SFI_DEV_TYPE_SPI && 875 - !strncmp(dev->name, spi_info->modalias, SFI_NAME_LEN)) { 875 + !strncmp(dev->name, spi_info->modalias, 876 + SFI_NAME_LEN)) { 876 877 pdata = dev->get_platform_data(spi_info); 877 878 break; 878 879 } ··· 905 904 intel_scu_i2c_device_register(bus, i2c_info); 906 905 else 907 906 i2c_register_board_info(bus, i2c_info, 1); 908 - } 907 + } 909 908 910 909 911 910 static int __init sfi_parse_devs(struct sfi_table_header *table) ··· 1035 1034 num = sizeof(gpio_button) / sizeof(struct gpio_keys_button); 1036 1035 for (i = 0; i < num; i++) { 1037 1036 gb[i].gpio = get_gpio_by_name(gb[i].desc); 1038 - pr_debug("info[%2d]: name = %s, gpio = %d\n", i, gb[i].desc, gb[i].gpio); 1037 + pr_debug("info[%2d]: name = %s, gpio = %d\n", i, gb[i].desc, 1038 + gb[i].gpio); 1039 1039 if (gb[i].gpio == -1) 1040 1040 continue; 1041 1041