diff options
author | zhang jiao | 2024-09-11 14:04:01 +0800 |
---|---|---|
committer | Krzysztof Wilczyński | 2024-09-13 22:37:06 +0000 |
commit | d0aac667f2e02f114bc6c3bf8c085a6060599aef (patch) | |
tree | 099d3b143b468ac83178ab147c89be505ca172de /tools | |
parent | 5dd15cce0c5426fff7b30c792d908e93646cd8c5 (diff) |
tools: PCI: Remove unused BILLION macro
The macro BILLION is never referenced in the code. Remove it.
Link: https://lore.kernel.org/r/20240911060401.9230-1-zhangjiao2@cmss.chinamobile.com
Signed-off-by: zhang jiao <zhangjiao2@cmss.chinamobile.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/pci/pcitest.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/pci/pcitest.c b/tools/pci/pcitest.c index 441b54234635..470258009ddc 100644 --- a/tools/pci/pcitest.c +++ b/tools/pci/pcitest.c @@ -16,8 +16,6 @@ #include <linux/pcitest.h> -#define BILLION 1E9 - static char *result[] = { "NOT OKAY", "OKAY" }; static char *irq[] = { "LEGACY", "MSI", "MSI-X" }; |