diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-03-28 19:15:44 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-03-28 19:15:44 +0000 |
commit | 93937039295118a9ec7ca860e71e06e713ea7f55 (patch) | |
tree | b916a4cd3369a28ab4c2c59b73223e88f9dd7deb /sys | |
parent | e07ad81a7d23927e80a8c1d89a4544f3c141be8d (diff) |
Replace 0 with NULL.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/acpi/bytgpio.c | 4 | ||||
-rw-r--r-- | sys/dev/acpi/sdhc_acpi.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/acpi/bytgpio.c b/sys/dev/acpi/bytgpio.c index 46978d31609..167d1e38ae6 100644 --- a/sys/dev/acpi/bytgpio.c +++ b/sys/dev/acpi/bytgpio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bytgpio.c,v 1.1 2016/03/28 17:29:11 kettenis Exp $ */ +/* $OpenBSD: bytgpio.c,v 1.2 2016/03/28 19:15:43 kettenis Exp $ */ /* * Copyright (c) 2016 Mark Kettenis * @@ -60,7 +60,7 @@ struct cfdriver bytgpio_cd = { const char *bytgpio_hids[] = { "INT33FC", - 0 + NULL }; /* diff --git a/sys/dev/acpi/sdhc_acpi.c b/sys/dev/acpi/sdhc_acpi.c index 4a9823bc10b..2a56aaa68ff 100644 --- a/sys/dev/acpi/sdhc_acpi.c +++ b/sys/dev/acpi/sdhc_acpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sdhc_acpi.c,v 1.2 2016/03/28 17:53:26 kettenis Exp $ */ +/* $OpenBSD: sdhc_acpi.c,v 1.3 2016/03/28 19:15:43 kettenis Exp $ */ /* * Copyright (c) 2016 Mark Kettenis * @@ -63,7 +63,7 @@ const char *sdhc_hids[] = { "INT33BB", "80860F14", "PNP0FFF", - 0 + NULL }; int sdhc_acpi_parse_resources(union acpi_resource *, void *); |