diff options
| author | Greg Kroah-Hartman <[email protected]> | 2018-11-20 10:37:04 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2018-11-20 10:37:04 +0100 |
| commit | 927ce0f0422ea77b95495ae015e097de152dfe91 (patch) | |
| tree | 565b4634338f24ebbca2908f8117cdcccdb71c82 | |
| parent | f8765177034a521b98ae404c8286d2d28f152310 (diff) | |
Revert "staging: greybus: remove extra space before tab"
This reverts commit 57d053682ff55aa16a390ddb054a26deb4dfbf9e.
Johan writes:
This commit doesn't even do what it claims. It leaves the two
spaces before tabs in place and instead removes a tab that was
used to indent a continuation line, and therefore also hurts
readability while introducing an inconsistency.
Reported-by: Johan Hovold <[email protected]>
Cc: Ioannis Valasakis <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/greybus/greybus_protocols.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/greybus/greybus_protocols.h b/drivers/staging/greybus/greybus_protocols.h index 2431d660b334..ddc73f10eb22 100644 --- a/drivers/staging/greybus/greybus_protocols.h +++ b/drivers/staging/greybus/greybus_protocols.h @@ -926,8 +926,8 @@ struct gb_spi_device_config_response { /** * struct gb_spi_transfer - a read/write buffer pair - * @speed_hz: Select a speed other than the device default for this transfer. - * If 0 the default (from @spi_device) is used. + * @speed_hz: Select a speed other than the device default for this transfer. If + * 0 the default (from @spi_device) is used. * @len: size of rx and tx buffers (in bytes) * @delay_usecs: microseconds to delay after this transfer before (optionally) * changing the chipselect status, then starting the next transfer or |