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

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>

authored by

Akinobu Mita and committed by
Mark Brown
75eb3a67 0afdd676

+3 -3
+3 -3
drivers/base/regmap/regmap-sccb.c
··· 1 1 // SPDX-License-Identifier: GPL-2.0 2 2 // Register map access API - SCCB support 3 3 4 - #include <linux/regmap.h> 5 4 #include <linux/i2c.h> 6 5 #include <linux/module.h> 6 + #include <linux/regmap.h> 7 7 8 8 #include "internal.h" 9 9 ··· 29 29 30 30 /** 31 31 * regmap_sccb_read - Read data from SCCB slave device 32 - * @context: Device that will be interacted wit 32 + * @context: Device that will be interacted with 33 33 * @reg: Register to be read from 34 34 * @val: Pointer to store read value 35 35 * ··· 65 65 66 66 /** 67 67 * regmap_sccb_write - Write data to SCCB slave device 68 - * @context: Device that will be interacted wit 68 + * @context: Device that will be interacted with 69 69 * @reg: Register to write to 70 70 * @val: Value to be written 71 71 *