diff options
author | jkoshy <jkoshy@FreeBSD.org> | 2007-12-07 13:45:47 +0000 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 2007-12-07 13:45:47 +0000 |
commit | 39d4b4accf7155cb1540f21d4b50a151301721ac (patch) | |
tree | 9f2e9ad63a09b8e92d880bca7af293321c6d203b | |
parent | 9bc486376bf7bd1de04b93b8ed2688cf3b4dfc11 (diff) | |
download | FreeBSD-src-39d4b4accf7155cb1540f21d4b50a151301721ac.zip FreeBSD-src-39d4b4accf7155cb1540f21d4b50a151301721ac.tar.gz |
Add stubs to unbreak LINT.
-rw-r--r-- | sys/arm/include/pmc_mdep.h | 4 | ||||
-rw-r--r-- | sys/ia64/include/pmc_mdep.h | 4 | ||||
-rw-r--r-- | sys/powerpc/include/pmc_mdep.h | 4 | ||||
-rw-r--r-- | sys/sparc64/include/pmc_mdep.h | 4 | ||||
-rw-r--r-- | sys/sun4v/include/pmc_mdep.h | 4 |
5 files changed, 20 insertions, 0 deletions
diff --git a/sys/arm/include/pmc_mdep.h b/sys/arm/include/pmc_mdep.h index 4e02fc6..9c719cb 100644 --- a/sys/arm/include/pmc_mdep.h +++ b/sys/arm/include/pmc_mdep.h @@ -19,6 +19,10 @@ union pmc_md_op_pmcallocate { union pmc_md_pmc { }; +#define PMC_TRAPFRAME_TO_PC(TF) (0) /* Stubs */ +#define PMC_TRAPFRAME_TO_FP(TF) (0) +#define PMC_TRAPFRAME_TO_SP(TF) (0) + #endif #endif /* !_MACHINE_PMC_MDEP_H_ */ diff --git a/sys/ia64/include/pmc_mdep.h b/sys/ia64/include/pmc_mdep.h index cf643c7..7ced0b9 100644 --- a/sys/ia64/include/pmc_mdep.h +++ b/sys/ia64/include/pmc_mdep.h @@ -19,6 +19,10 @@ union pmc_md_op_pmcallocate { union pmc_md_pmc { }; +#define PMC_TRAPFRAME_TO_PC(TF) (0) /* Stubs */ +#define PMC_TRAPFRAME_TO_FP(TF) (0) +#define PMC_TRAPFRAME_TO_SP(TF) (0) + #endif #endif /* !_MACHINE_PMC_MDEP_H_ */ diff --git a/sys/powerpc/include/pmc_mdep.h b/sys/powerpc/include/pmc_mdep.h index d5417c3..81a41fd 100644 --- a/sys/powerpc/include/pmc_mdep.h +++ b/sys/powerpc/include/pmc_mdep.h @@ -20,6 +20,10 @@ union pmc_md_op_pmcallocate { union pmc_md_pmc { }; +#define PMC_TRAPFRAME_TO_PC(TF) (0) /* Stubs */ +#define PMC_TRAPFRAME_TO_FP(TF) (0) +#define PMC_TRAPFRAME_TO_SP(TF) (0) + #endif #endif /* !_MACHINE_PMC_MDEP_H_ */ diff --git a/sys/sparc64/include/pmc_mdep.h b/sys/sparc64/include/pmc_mdep.h index cf643c7..7ced0b9 100644 --- a/sys/sparc64/include/pmc_mdep.h +++ b/sys/sparc64/include/pmc_mdep.h @@ -19,6 +19,10 @@ union pmc_md_op_pmcallocate { union pmc_md_pmc { }; +#define PMC_TRAPFRAME_TO_PC(TF) (0) /* Stubs */ +#define PMC_TRAPFRAME_TO_FP(TF) (0) +#define PMC_TRAPFRAME_TO_SP(TF) (0) + #endif #endif /* !_MACHINE_PMC_MDEP_H_ */ diff --git a/sys/sun4v/include/pmc_mdep.h b/sys/sun4v/include/pmc_mdep.h index cf643c7..7ced0b9 100644 --- a/sys/sun4v/include/pmc_mdep.h +++ b/sys/sun4v/include/pmc_mdep.h @@ -19,6 +19,10 @@ union pmc_md_op_pmcallocate { union pmc_md_pmc { }; +#define PMC_TRAPFRAME_TO_PC(TF) (0) /* Stubs */ +#define PMC_TRAPFRAME_TO_FP(TF) (0) +#define PMC_TRAPFRAME_TO_SP(TF) (0) + #endif #endif /* !_MACHINE_PMC_MDEP_H_ */ |