hwpmc: remove dangling references to hwpmc_xscale
Reported by: mjg
This commit is contained in:
parent
fd32dfa062
commit
6cf2818162
@ -58,10 +58,6 @@ __FBSDID("$FreeBSD$");
|
||||
struct pmc_mdep *
|
||||
pmc_md_initialize()
|
||||
{
|
||||
#ifdef CPU_XSCALE_IXP425
|
||||
if (cpu_class == CPU_CLASS_XSCALE)
|
||||
return pmc_xscale_initialize();
|
||||
#endif
|
||||
#ifdef CPU_CORTEXA
|
||||
if (cpu_class == CPU_CLASS_CORTEXA)
|
||||
return pmc_armv7_initialize();
|
||||
@ -72,13 +68,6 @@ pmc_md_initialize()
|
||||
void
|
||||
pmc_md_finalize(struct pmc_mdep *md)
|
||||
{
|
||||
#ifdef CPU_XSCALE_IXP425
|
||||
if (cpu_class == CPU_CLASS_XSCALE)
|
||||
pmc_xscale_finalize(md);
|
||||
else
|
||||
KASSERT(0, ("[arm,%d] Unknown CPU Class 0x%x", __LINE__,
|
||||
cpu_class));
|
||||
#endif
|
||||
#ifdef CPU_CORTEXA
|
||||
if (cpu_class == CPU_CLASS_CORTEXA)
|
||||
pmc_armv7_finalize(md);
|
||||
|
Loading…
Reference in New Issue
Block a user