summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGulsah Kose <gulsah.1004@gmail.com>2014-03-09 21:13:54 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-03-18 10:51:13 -0700
commit41250ea7ce46c3234ecefc703454d33fc1b3f5e9 (patch)
tree1e9fca3f7871562ac008fa60ee107c8274bd1712
parent6624ad1560a16b68122d80942658d0a556e8dc4c (diff)
downloadop-kernel-dev-41250ea7ce46c3234ecefc703454d33fc1b3f5e9.zip
op-kernel-dev-41250ea7ce46c3234ecefc703454d33fc1b3f5e9.tar.gz
staging: nokia_h4p: Fix line over 80 characters.
Fix checkpatch.pl issues with line over 80 characters in nokia_core.c Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/nokia_h4p/nokia_core.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/drivers/staging/nokia_h4p/nokia_core.c b/drivers/staging/nokia_h4p/nokia_core.c
index 641528e..8791c0b 100644
--- a/drivers/staging/nokia_h4p/nokia_core.c
+++ b/drivers/staging/nokia_h4p/nokia_core.c
@@ -1065,7 +1065,8 @@ static int hci_h4p_probe(struct platform_device *pdev)
int err;
dev_info(&pdev->dev, "Registering HCI H4P device\n");
- info = devm_kzalloc(&pdev->dev, sizeof(struct hci_h4p_info), GFP_KERNEL);
+ info = devm_kzalloc(&pdev->dev, sizeof(struct hci_h4p_info),
+ GFP_KERNEL);
if (!info)
return -ENOMEM;
@@ -1125,14 +1126,16 @@ static int hci_h4p_probe(struct platform_device *pdev)
}
info->irq = bt_plat_data->uart_irq;
- info->uart_base = devm_ioremap(&pdev->dev, bt_plat_data->uart_base, SZ_2K);
+ info->uart_base = devm_ioremap(&pdev->dev, bt_plat_data->uart_base,
+ SZ_2K);
info->uart_iclk = devm_clk_get(&pdev->dev, bt_plat_data->uart_iclk);
info->uart_fclk = devm_clk_get(&pdev->dev, bt_plat_data->uart_fclk);
- err = devm_request_irq(&pdev->dev, info->irq, hci_h4p_interrupt, IRQF_DISABLED,
- "hci_h4p", info);
+ err = devm_request_irq(&pdev->dev, info->irq, hci_h4p_interrupt,
+ IRQF_DISABLED, "hci_h4p", info);
if (err < 0) {
- dev_err(info->dev, "hci_h4p: unable to get IRQ %d\n", info->irq);
+ dev_err(info->dev, "hci_h4p: unable to get IRQ %d\n",
+ info->irq);
return err;
}
OpenPOWER on IntegriCloud