diff options
| author | christos <christos@NetBSD.org> | 2020-10-30 22:19:00 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2020-10-30 22:19:00 +0000 |
| commit | eb6443d96dfef047a25e7bf07a5e62047adef4fc (patch) | |
| tree | 5bc712841551cc4c3398559d97ab9fb4658653de /sys/dev/sysmon | |
| parent | 96931a87f532145d67afa5d61825d01ae28c39f4 (diff) | |
fix indentation
Diffstat (limited to 'sys/dev/sysmon')
| -rw-r--r-- | sys/dev/sysmon/sysmon_power.c | 20 |
1 files changed, 10 insertions, 10 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, }; /* |
