The branch main has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=f59127dac5ca0be3648ecc0a031a21e472afb133
commit f59127dac5ca0be3648ecc0a031a21e472afb133 Author: Mitchell Horne <[email protected]> AuthorDate: 2021-05-05 18:40:39 +0000 Commit: Mitchell Horne <[email protected]> CommitDate: 2021-05-13 19:02:59 +0000 hwpmc: fix PMC_CPU_LAST It is unused, but incorrect. MFC after: 3 days Sponsored by: The FreeBSD Foundation --- sys/sys/pmc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/pmc.h b/sys/sys/pmc.h index 1486c7aa91c7..9328a7bdfa05 100644 --- a/sys/sys/pmc.h +++ b/sys/sys/pmc.h @@ -138,7 +138,7 @@ enum pmc_cputype { }; #define PMC_CPU_FIRST PMC_CPU_AMD_K7 -#define PMC_CPU_LAST PMC_CPU_GENERIC +#define PMC_CPU_LAST PMC_CPU_ARMV8_CORTEX_A76 /* * Classes of PMCs _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
