diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-07-08 12:41:56 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-07-09 09:31:54 +0000 |
commit | 251279c537397835a4504165e7582cb29c19891c (patch) | |
tree | a4d208e75433392f19b18b912ecf642b7a545ba4 /src/southbridge/amd/common | |
parent | 39303d5d4960814fc606cce3a9ec10545faaef4b (diff) | |
download | coreboot-251279c537397835a4504165e7582cb29c19891c.tar.xz |
src/southbridge: Use "foo *bar" instead of "foo* bar"
Change-Id: I72d50615d77b91529810e8f590fa56f3c6f7546c
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/27409
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/southbridge/amd/common')
-rw-r--r-- | src/southbridge/amd/common/amd_pci_util.c | 4 | ||||
-rw-r--r-- | src/southbridge/amd/common/amd_pci_util.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/southbridge/amd/common/amd_pci_util.c b/src/southbridge/amd/common/amd_pci_util.c index 2acd151252..ca76809bf3 100644 --- a/src/southbridge/amd/common/amd_pci_util.c +++ b/src/southbridge/amd/common/amd_pci_util.c @@ -26,8 +26,8 @@ const struct pirq_struct * pirq_data_ptr = NULL; u32 pirq_data_size = 0; -const u8 * intr_data_ptr = NULL; -const u8 * picr_data_ptr = NULL; +const u8 *intr_data_ptr = NULL; +const u8 *picr_data_ptr = NULL; /* * Read the FCH PCI_INTR registers 0xC00/0xC01 at a diff --git a/src/southbridge/amd/common/amd_pci_util.h b/src/southbridge/amd/common/amd_pci_util.h index 452db65b91..9a4695e29a 100644 --- a/src/southbridge/amd/common/amd_pci_util.h +++ b/src/southbridge/amd/common/amd_pci_util.h @@ -32,8 +32,8 @@ struct pirq_struct { extern const struct pirq_struct * pirq_data_ptr; extern u32 pirq_data_size; -extern const u8 * intr_data_ptr; -extern const u8 * picr_data_ptr; +extern const u8 *intr_data_ptr; +extern const u8 *picr_data_ptr; u8 read_pci_int_idx(u8 index, int mode); void write_pci_int_idx(u8 index, int mode, u8 data); |