diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2020-08-14 16:51:10 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2020-08-14 16:51:10 +0000 |
commit | e85cecd3ca91d3f716d25cc2cf9e4d84ea0e56b9 (patch) | |
tree | c7f2c9eb7eeb17f5d7c61ae722ffe3b7541e4c46 | |
parent | 720115ccd30ad4a684b8aa1d04adcbc37a40184d (diff) |
Remove "for all XXX platforms" from comment. Fixes the issue pointed out
by miod@ where the powerpc64 claimed to be "for all AArch64 platforms".
ok patrick@
-rw-r--r-- | sys/arch/arm/include/softintr.h | 4 | ||||
-rw-r--r-- | sys/arch/arm64/include/softintr.h | 4 | ||||
-rw-r--r-- | sys/arch/powerpc64/include/softintr.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/arm/include/softintr.h b/sys/arch/arm/include/softintr.h index 913c632a69d..d347444bd3c 100644 --- a/sys/arch/arm/include/softintr.h +++ b/sys/arch/arm/include/softintr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: softintr.h,v 1.5 2010/12/21 14:56:23 claudio Exp $ */ +/* $OpenBSD: softintr.h,v 1.6 2020/08/14 16:51:09 kettenis Exp $ */ /* $NetBSD: softintr.h,v 1.1 2002/01/29 22:54:14 thorpej Exp $ */ /* @@ -44,7 +44,7 @@ #include <sys/mutex.h> /* - * Generic software interrupt support for all ARM platforms. + * Generic software interrupt support. * * To use this code, include <arm/softintr.h> from your platform's * <machine/intr.h>. diff --git a/sys/arch/arm64/include/softintr.h b/sys/arch/arm64/include/softintr.h index 8b2e005bf9e..07fd344bec6 100644 --- a/sys/arch/arm64/include/softintr.h +++ b/sys/arch/arm64/include/softintr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: softintr.h,v 1.1 2016/12/17 23:38:33 patrick Exp $ */ +/* $OpenBSD: softintr.h,v 1.2 2020/08/14 16:51:09 kettenis Exp $ */ /* $NetBSD: softintr.h,v 1.1 2002/01/29 22:54:14 thorpej Exp $ */ /*- @@ -39,7 +39,7 @@ #include <sys/queue.h> /* - * Generic software interrupt support for all AArch64 platforms. + * Generic software interrupt support. * * To use this code, include <machine/softintr.h> from your platform's * <machine/intr.h>. diff --git a/sys/arch/powerpc64/include/softintr.h b/sys/arch/powerpc64/include/softintr.h index 5131abc4379..18e76201b7b 100644 --- a/sys/arch/powerpc64/include/softintr.h +++ b/sys/arch/powerpc64/include/softintr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: softintr.h,v 1.1 2020/05/16 17:11:14 kettenis Exp $ */ +/* $OpenBSD: softintr.h,v 1.2 2020/08/14 16:51:09 kettenis Exp $ */ /*- * Copyright (c) 1998, 2001 The NetBSD Foundation, Inc. @@ -38,7 +38,7 @@ #include <sys/queue.h> /* - * Generic software interrupt support for all AArch64 platforms. + * Generic software interrupt support. * * To use this code, include <machine/softintr.h> from your platform's * <machine/intr.h>. |