aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Mitchell <ehem+freebsd@m5p.com>2022-06-23 00:53:47 +0000
committerWarner Losh <imp@FreeBSD.org>2023-02-04 16:10:34 +0000
commit24c0ba96f1d0827c73ddbded7d5187a172a4e93f (patch)
treec526fe2876f29d55d495610dbd16626b1ed584ed
parent336fbb23def7a6b3dc44ce5c76bbc07a701c0a69 (diff)
downloadsrc-24c0ba96f1d0827c73ddbded7d5187a172a4e93f.tar.gz
src-24c0ba96f1d0827c73ddbded7d5187a172a4e93f.zip
mpt: purge EOL release compatibility
Remove FreeBSD 7.x and earlier compatibility. Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/603 Differential Revision: https://reviews.freebsd.org/D35560
-rw-r--r--sys/dev/mpt/mpt_cam.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/dev/mpt/mpt_cam.h b/sys/dev/mpt/mpt_cam.h
index 080a3c1fe9d9..e292d02396a3 100644
--- a/sys/dev/mpt/mpt_cam.h
+++ b/sys/dev/mpt/mpt_cam.h
@@ -145,11 +145,6 @@ mpt_wakeup_recovery_thread(struct mpt_softc *mpt)
}
/************************** Version Compatibility *************************/
-#if __FreeBSD_version < 700031
-#define mpt_sim_alloc(a, b, c, mpt, e, f, g) \
- cam_sim_alloc(a, b, c, mpt, (mpt)->unit, e, f, g)
-#else
#define mpt_sim_alloc(a, b, c, mpt, e, f, g) \
cam_sim_alloc(a, b, c, mpt, (mpt)->unit, &(mpt)->mpt_lock, e, f, g)
-#endif
#endif /*_MPT_CAM_H_ */