Skip to content

Commit 81e53c0

Browse files
committed
Merge branch 'pci/tools'
- Remove .*.cmd files with make clean (zhang jiao) - Remove the unused BILLION macro (zhang jiao) * pci/tools: tools: PCI: Remove unused BILLION macro tools: PCI: Remove .*.cmd files with make clean
2 parents 5dc07a2 + d0aac66 commit 81e53c0

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

tools/pci/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ $(OUTPUT)pcitest: $(PCITEST_IN)
4242
clean:
4343
rm -f $(ALL_PROGRAMS)
4444
rm -rf $(OUTPUT)include/
45-
find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete
45+
find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete
4646

4747
install: $(ALL_PROGRAMS)
4848
install -d -m 755 $(DESTDIR)$(bindir); \

tools/pci/pcitest.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
#include <linux/pcitest.h>
1818

19-
#define BILLION 1E9
20-
2119
static char *result[] = { "NOT OKAY", "OKAY" };
2220
static char *irq[] = { "LEGACY", "MSI", "MSI-X" };
2321

0 commit comments

Comments
 (0)