summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2020-10-30 22:19:00 +0000
committerchristos <christos@NetBSD.org>2020-10-30 22:19:00 +0000
commiteb6443d96dfef047a25e7bf07a5e62047adef4fc (patch)
tree5bc712841551cc4c3398559d97ab9fb4658653de /sys
parent96931a87f532145d67afa5d61825d01ae28c39f4 (diff)
fix indentation
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/sysmon/sysmon_power.c20
-rw-r--r--sys/kern/kern_sig.c12
2 files changed, 16 insertions, 16 deletions
diff --git a/sys/dev/sysmon/sysmon_power.c b/sys/dev/sysmon/sysmon_power.c
index e06f0830fd1..4c2a490e6f5 100644
--- a/sys/dev/sysmon/sysmon_power.c
+++ b/sys/dev/sysmon/sysmon_power.c
@@ -1,4 +1,4 @@
-/* $NetBSD: sysmon_power.c,v 1.64 2020/06/11 02:39:31 thorpej Exp $ */
+/* $NetBSD: sysmon_power.c,v 1.65 2020/10/30 22:19:18 christos Exp $ */
/*-
* Copyright (c) 2007 Juan Romero Pardines.
@@ -69,7 +69,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sysmon_power.c,v 1.64 2020/06/11 02:39:31 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sysmon_power.c,v 1.65 2020/10/30 22:19:18 christos Exp $");
#ifdef _KERNEL_OPT
#include "opt_compat_netbsd.h"
@@ -555,17 +555,17 @@ filt_sysmon_power_read(struct knote *kn, long hint)
}
static const struct filterops sysmon_power_read_filtops = {
- .f_isfd = 1,
- .f_attach = NULL,
- .f_detach = filt_sysmon_power_rdetach,
- .f_event = filt_sysmon_power_read,
+ .f_isfd = 1,
+ .f_attach = NULL,
+ .f_detach = filt_sysmon_power_rdetach,
+ .f_event = filt_sysmon_power_read,
};
static const struct filterops sysmon_power_write_filtops = {
- .f_isfd = 1,
- .f_attach = NULL,
- .f_detach = filt_sysmon_power_rdetach,
- .f_event = filt_seltrue,
+ .f_isfd = 1,
+ .f_attach = NULL,
+ .f_detach = filt_sysmon_power_rdetach,
+ .f_event = filt_seltrue,
};
/*
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c
index e88eaf83eda..4794fdca51a 100644
--- a/sys/kern/kern_sig.c
+++ b/sys/kern/kern_sig.c
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_sig.c,v 1.393 2020/10/26 17:35:39 christos Exp $ */
+/* $NetBSD: kern_sig.c,v 1.394 2020/10/30 22:19:00 christos Exp $ */
/*-
* Copyright (c) 2006, 2007, 2008, 2019 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.393 2020/10/26 17:35:39 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.394 2020/10/30 22:19:00 christos Exp $");
#include "opt_execfmt.h"
#include "opt_ptrace.h"
@@ -2682,8 +2682,8 @@ filt_signal(struct knote *kn, long hint)
}
const struct filterops sig_filtops = {
- .f_isfd = 0,
- .f_attach = filt_sigattach,
- .f_detach = filt_sigdetach,
- .f_event = filt_signal,
+ .f_isfd = 0,
+ .f_attach = filt_sigattach,
+ .f_detach = filt_sigdetach,
+ .f_event = filt_signal,
};