diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2018-07-23 00:45:46 +0900 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-07-23 18:05:08 +0100 |
commit | 75eb3a67a29e9f87c07c8bd184a7ed4274a58ef0 (patch) | |
tree | 4b41673a1898d375768c6c98621040941bdeecb8 | |
parent | 0afdd676f6e575478634d961286094169adbc50d (diff) | |
download | linux-75eb3a67a29e9f87c07c8bd184a7ed4274a58ef0.tar.gz linux-75eb3a67a29e9f87c07c8bd184a7ed4274a58ef0.tar.bz2 linux-75eb3a67a29e9f87c07c8bd184a7ed4274a58ef0.zip |
regmap: sccb: fix typo and sort headers alphabetically
Fix typos 's/wit/with/' in the comments and sort headers alphabetically
in order to avoid duplicate includes in future.
Fixes: bcf7eac3d97f ("regmap: add SCCB support")
Reported-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/base/regmap/regmap-sccb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/base/regmap/regmap-sccb.c b/drivers/base/regmap/regmap-sccb.c index b6eb876ea819..597042e2d009 100644 --- a/drivers/base/regmap/regmap-sccb.c +++ b/drivers/base/regmap/regmap-sccb.c @@ -1,9 +1,9 @@ // SPDX-License-Identifier: GPL-2.0 // Register map access API - SCCB support -#include <linux/regmap.h> #include <linux/i2c.h> #include <linux/module.h> +#include <linux/regmap.h> #include "internal.h" @@ -29,7 +29,7 @@ static bool sccb_is_available(struct i2c_adapter *adap) /** * regmap_sccb_read - Read data from SCCB slave device - * @context: Device that will be interacted wit + * @context: Device that will be interacted with * @reg: Register to be read from * @val: Pointer to store read value * @@ -65,7 +65,7 @@ out: /** * regmap_sccb_write - Write data to SCCB slave device - * @context: Device that will be interacted wit + * @context: Device that will be interacted with * @reg: Register to write to * @val: Value to be written * |