Based on 2 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation # extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 4122 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Enrico Weigelt <info@metux.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
26 lines
822 B
C
26 lines
822 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Device handling thread interface for mac80211 ST-Ericsson CW1200 drivers
|
|
*
|
|
* Copyright (c) 2010, ST-Ericsson
|
|
* Author: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
|
|
*/
|
|
|
|
#ifndef CW1200_BH_H
|
|
#define CW1200_BH_H
|
|
|
|
/* extern */ struct cw1200_common;
|
|
|
|
int cw1200_register_bh(struct cw1200_common *priv);
|
|
void cw1200_unregister_bh(struct cw1200_common *priv);
|
|
void cw1200_irq_handler(struct cw1200_common *priv);
|
|
void cw1200_bh_wakeup(struct cw1200_common *priv);
|
|
int cw1200_bh_suspend(struct cw1200_common *priv);
|
|
int cw1200_bh_resume(struct cw1200_common *priv);
|
|
/* Must be called from BH thread. */
|
|
void cw1200_enable_powersave(struct cw1200_common *priv,
|
|
bool enable);
|
|
int wsm_release_tx_buffer(struct cw1200_common *priv, int count);
|
|
|
|
#endif /* CW1200_BH_H */
|