Commit 3de14369 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Bartosz Golaszewski

Documentation: gpio: Replace leading TABs by spaces in code blocks

Code blocks are indented with two spaces. If there's a leading TAB, the
syntax highlighting might be broken in some editors. To prevent that,
unify all code blocks by using spaces instead of leading TAB(s).
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
[Bartosz: tweaked the commit message]
Signed-off-by: default avatarBartosz Golaszewski <bartosz.golaszewski@linaro.org>
parent 1685f72a
...@@ -550,8 +550,8 @@ the interrupt separately and go with it: ...@@ -550,8 +550,8 @@ the interrupt separately and go with it:
struct my_gpio *g; struct my_gpio *g;
struct gpio_irq_chip *girq; struct gpio_irq_chip *girq;
ret = devm_request_threaded_irq(dev, irq, NULL, ret = devm_request_threaded_irq(dev, irq, NULL, irq_thread_fn,
irq_thread_fn, IRQF_ONESHOT, "my-chip", g); IRQF_ONESHOT, "my-chip", g);
if (ret < 0) if (ret < 0)
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment