Fix compilation error pointed out by nishimura@.

This commit is contained in:
thorpej 2018-06-17 14:50:54 +00:00
parent 62d94959b4
commit 6ffcc72460
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: max77620.c,v 1.3 2018/06/16 21:22:13 thorpej Exp $ */ /* $NetBSD: max77620.c,v 1.4 2018/06/17 14:50:54 thorpej Exp $ */
/*- /*-
* Copyright (c) 2017 Jared McNeill <jmcneill@invisible.ca> * Copyright (c) 2017 Jared McNeill <jmcneill@invisible.ca>
@ -27,7 +27,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: max77620.c,v 1.3 2018/06/16 21:22:13 thorpej Exp $"); __KERNEL_RCSID(0, "$NetBSD: max77620.c,v 1.4 2018/06/17 14:50:54 thorpej Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
@ -260,7 +260,7 @@ max77620_match(device_t parent, cfdata_t match, void *aux)
struct i2c_attach_args *ia = aux; struct i2c_attach_args *ia = aux;
int match_result; int match_result;
if (iic_use_direct_match(ia, match, max77620_compats, match_result)) if (iic_use_direct_match(ia, match, max77620_compats, &match_result))
return match_result; return match_result;
return 0; return 0;