diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-22 12:51:27 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-06-04 08:52:13 +0000 |
commit | 448d9fb4310eb8c390020c64af703060ab3545a6 (patch) | |
tree | a2b820d5aee80f3de5798584c257c9ec894ffa57 /src/soc/intel/fsp_baytrail | |
parent | 7154ef2fe155ce34517c8f893ffec6bc1500e6ac (diff) |
src: Use "foo *bar" instead of "foo* bar"
Change-Id: Ib2bb6cc80ac2bdc389c60c7ffac4bba937f0fca8
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26461
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/soc/intel/fsp_baytrail')
-rw-r--r-- | src/soc/intel/fsp_baytrail/include/soc/gpio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/fsp_baytrail/include/soc/gpio.h b/src/soc/intel/fsp_baytrail/include/soc/gpio.h index 02c226b1d7..7c81151b51 100644 --- a/src/soc/intel/fsp_baytrail/include/soc/gpio.h +++ b/src/soc/intel/fsp_baytrail/include/soc/gpio.h @@ -342,7 +342,7 @@ struct soc_gpio_config { /* Description of GPIO 'bank' ex. {ncore, score. ssus} */ struct gpio_bank { const int gpio_count; - const u8* gpio_to_pad; + const u8 *gpio_to_pad; const int legacy_base; const unsigned long pad_base; const u8 has_wake_en :1; |