diff options
author | Bartosz Golaszewski <brgl@bgdev.pl> | 2017-12-21 17:53:09 +0100 |
---|---|---|
committer | Bartosz Golaszewski <brgl@bgdev.pl> | 2018-01-01 19:40:50 +0100 |
commit | 98fb3a34736dec1e14e43382c0df30f815560e5f (patch) | |
tree | e33f78b320e1217b1ebeb3a220b44b498a0f439c /include/linux/platform_data | |
parent | 6ce261e87fe14d551aae36e15171c60c823ba10a (diff) | |
download | blackbird-obmc-linux-98fb3a34736dec1e14e43382c0df30f815560e5f.tar.gz blackbird-obmc-linux-98fb3a34736dec1e14e43382c0df30f815560e5f.zip |
eeprom: at24: fix a whitespace error in platform data
Replace spaces with tabs in the definition of AT24_FLAG_NO_RDROL.
Fixes: 9d404411091c ("eeprom: at24: support eeproms that do not auto-rollover reads")
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Diffstat (limited to 'include/linux/platform_data')
-rw-r--r-- | include/linux/platform_data/at24.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/platform_data/at24.h b/include/linux/platform_data/at24.h index 841bb2815a41..63507ff464ee 100644 --- a/include/linux/platform_data/at24.h +++ b/include/linux/platform_data/at24.h @@ -50,7 +50,7 @@ struct at24_platform_data { #define AT24_FLAG_TAKE8ADDR BIT(4) /* take always 8 addresses (24c00) */ #define AT24_FLAG_SERIAL BIT(3) /* factory-programmed serial number */ #define AT24_FLAG_MAC BIT(2) /* factory-programmed mac address */ -#define AT24_FLAG_NO_RDROL BIT(1) /* does not auto-rollover reads to */ +#define AT24_FLAG_NO_RDROL BIT(1) /* does not auto-rollover reads to */ /* the next slave address */ void (*setup)(struct nvmem_device *nvmem, void *context); |