arm: Remove obsolete comments

FreeBSD has never supported arm26, so remove comments about what
trapframes look like for that platform.

Noticed by:		kevans
Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2021-10-27 09:44:41 -06:00
parent 5d3bf5b1d2
commit aa15f7df64

View file

@ -61,7 +61,7 @@
*/
struct trapframe {
register_t tf_spsr; /* Zero on arm26 */
register_t tf_spsr;
register_t tf_r0;
register_t tf_r1;
register_t tf_r2;
@ -77,8 +77,8 @@ struct trapframe {
register_t tf_r12;
register_t tf_usr_sp;
register_t tf_usr_lr;
register_t tf_svc_sp; /* Not used on arm26 */
register_t tf_svc_lr; /* Not used on arm26 */
register_t tf_svc_sp;
register_t tf_svc_lr;
register_t tf_pc;
register_t tf_pad;
};