mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
32a31bd41b
The ssi_waketest() function definition causes a 'make W=1' warning
because the declaration is hidden away in ssi_protocol.c:
drivers/hsi/controllers/omap_ssi_core.c:147:6: error: no previous prototype for 'ssi_waketest'
Move it into a header file instead.
Fixes: dc7bf5d718
("HSI: Introduce driver for SSI Protocol")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
30 lines
763 B
C
30 lines
763 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* ssip_slave.h
|
|
*
|
|
* SSIP slave support header file
|
|
*
|
|
* Copyright (C) 2010 Nokia Corporation. All rights reserved.
|
|
*
|
|
* Contact: Carlos Chinea <carlos.chinea@nokia.com>
|
|
*/
|
|
|
|
#ifndef __LINUX_SSIP_SLAVE_H__
|
|
#define __LINUX_SSIP_SLAVE_H__
|
|
|
|
#include <linux/hsi/hsi.h>
|
|
|
|
static inline void ssip_slave_put_master(struct hsi_client *master)
|
|
{
|
|
}
|
|
|
|
struct hsi_client *ssip_slave_get_master(struct hsi_client *slave);
|
|
int ssip_slave_start_tx(struct hsi_client *master);
|
|
int ssip_slave_stop_tx(struct hsi_client *master);
|
|
void ssip_reset_event(struct hsi_client *master);
|
|
|
|
int ssip_slave_running(struct hsi_client *master);
|
|
void ssi_waketest(struct hsi_client *cl, unsigned int enable);
|
|
|
|
#endif /* __LINUX_SSIP_SLAVE_H__ */
|
|
|