blob: 0cebf7f036732ed736f600a60101bc7e14003957 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright 2020 Google, LLC
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef MAX20339_H_
#define MAX20339_H_
#if IS_ENABLED(CONFIG_MAX20339)
extern void max20339_irq(void *data);
#else
static inline void max20339_irq(void *data)
{
return;
}
#endif
#endif /* MAX20339_H_ */