diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2024-08-10 09:52:57 +0200 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2024-10-14 15:31:08 +0000 |
commit | bede28b17df3aa3af4adc9c2396abd4070785cda (patch) | |
tree | f1e5423adfb91dfcb3be810902ad8896757c7fb7 /src/southbridge/intel/i82801gx/pcie.c | |
parent | 55a5041fbfcda747db6b24c4c6a292ecb26cac50 (diff) |
i945: Use nullptr instead of NULL
nullptr was introduced in C11 spec and gcc 4.7.
https://en.cppreference.com/w/cpp/language/nullptr
https://stackoverflow.com/questions/16256586/how-to-enable-c11-on-later-versions-of-gcc
coreboot switched to GCC 4.7.2 on October 25, 2021, prior to coreboot v4.1.
https://review.coreboot.org/c/coreboot/+/1609
GCC-13 implemented nullptr constant: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3042.htm
So use it insted of NULL macro.
Change-Id: I7d47e692a33d739345a81f589d4329a31beeb8c5
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83860
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge/intel/i82801gx/pcie.c')
-rw-r--r-- | src/southbridge/intel/i82801gx/pcie.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/southbridge/intel/i82801gx/pcie.c b/src/southbridge/intel/i82801gx/pcie.c index befbf3beb7..f4b3dbd4bb 100644 --- a/src/southbridge/intel/i82801gx/pcie.c +++ b/src/southbridge/intel/i82801gx/pcie.c @@ -138,7 +138,7 @@ static void root_port_commit_config(struct device *dev) int i; bool coalesce = false; - if (dev->chip_info != NULL) { + if (dev->chip_info != nullptr) { const struct southbridge_intel_i82801gx_config *config = dev->chip_info; coalesce = config->pcie_port_coalesce; } @@ -151,8 +151,8 @@ static void root_port_commit_config(struct device *dev) pcie_dev = rpc.ports[i]; - if (pcie_dev == NULL) { - printk(BIOS_ERR, "Root Port %d device is NULL?\n", i + 1); + if (pcie_dev == nullptr) { + printk(BIOS_ERR, "Root Port %d device is nullptr?\n", i + 1); continue; } |