mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
isdn/gigaset: Convert timers to use timer_setup()
In preparation for unconditionally passing the struct timer_list pointer to all timer callbacks, switch to using the new timer_setup() and from_timer() to pass the timer pointer explicitly. Cc: Paul Bolle <pebolle@tiscali.nl> Cc: Karsten Keil <isdn@linux-pingi.de> Cc: "David S. Miller" <davem@davemloft.net> Cc: Johan Hovold <johan@kernel.org> Cc: gigaset307x-common@lists.sourceforge.net Cc: netdev@vger.kernel.org Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c788dd2c64
commit
4cfea08e62
@ -433,10 +433,11 @@ static void check_pending(struct bas_cardstate *ucs)
|
|||||||
* argument:
|
* argument:
|
||||||
* controller state structure
|
* controller state structure
|
||||||
*/
|
*/
|
||||||
static void cmd_in_timeout(unsigned long data)
|
static void cmd_in_timeout(struct timer_list *t)
|
||||||
{
|
{
|
||||||
struct cardstate *cs = (struct cardstate *) data;
|
struct bas_cardstate *ucs = from_timer(ucs, t, timer_cmd_in);
|
||||||
struct bas_cardstate *ucs = cs->hw.bas;
|
struct urb *urb = ucs->urb_int_in;
|
||||||
|
struct cardstate *cs = urb->context;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
if (!ucs->rcvbuf_size) {
|
if (!ucs->rcvbuf_size) {
|
||||||
@ -639,10 +640,11 @@ static void int_in_work(struct work_struct *work)
|
|||||||
* argument:
|
* argument:
|
||||||
* controller state structure
|
* controller state structure
|
||||||
*/
|
*/
|
||||||
static void int_in_resubmit(unsigned long data)
|
static void int_in_resubmit(struct timer_list *t)
|
||||||
{
|
{
|
||||||
struct cardstate *cs = (struct cardstate *) data;
|
struct bas_cardstate *ucs = from_timer(ucs, t, timer_int_in);
|
||||||
struct bas_cardstate *ucs = cs->hw.bas;
|
struct urb *urb = ucs->urb_int_in;
|
||||||
|
struct cardstate *cs = urb->context;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
if (ucs->retry_int_in++ >= BAS_RETRY) {
|
if (ucs->retry_int_in++ >= BAS_RETRY) {
|
||||||
@ -1441,10 +1443,11 @@ error:
|
|||||||
* argument:
|
* argument:
|
||||||
* controller state structure
|
* controller state structure
|
||||||
*/
|
*/
|
||||||
static void req_timeout(unsigned long data)
|
static void req_timeout(struct timer_list *t)
|
||||||
{
|
{
|
||||||
struct cardstate *cs = (struct cardstate *) data;
|
struct bas_cardstate *ucs = from_timer(ucs, t, timer_ctrl);
|
||||||
struct bas_cardstate *ucs = cs->hw.bas;
|
struct urb *urb = ucs->urb_int_in;
|
||||||
|
struct cardstate *cs = urb->context;
|
||||||
int pending;
|
int pending;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
@ -1837,10 +1840,11 @@ static void write_command_callback(struct urb *urb)
|
|||||||
* argument:
|
* argument:
|
||||||
* controller state structure
|
* controller state structure
|
||||||
*/
|
*/
|
||||||
static void atrdy_timeout(unsigned long data)
|
static void atrdy_timeout(struct timer_list *t)
|
||||||
{
|
{
|
||||||
struct cardstate *cs = (struct cardstate *) data;
|
struct bas_cardstate *ucs = from_timer(ucs, t, timer_atrdy);
|
||||||
struct bas_cardstate *ucs = cs->hw.bas;
|
struct urb *urb = ucs->urb_int_in;
|
||||||
|
struct cardstate *cs = urb->context;
|
||||||
|
|
||||||
dev_warn(cs->dev, "timeout waiting for HD_READY_SEND_ATDATA\n");
|
dev_warn(cs->dev, "timeout waiting for HD_READY_SEND_ATDATA\n");
|
||||||
|
|
||||||
@ -2213,10 +2217,10 @@ static int gigaset_initcshw(struct cardstate *cs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
spin_lock_init(&ucs->lock);
|
spin_lock_init(&ucs->lock);
|
||||||
setup_timer(&ucs->timer_ctrl, req_timeout, (unsigned long) cs);
|
timer_setup(&ucs->timer_ctrl, req_timeout, 0);
|
||||||
setup_timer(&ucs->timer_atrdy, atrdy_timeout, (unsigned long) cs);
|
timer_setup(&ucs->timer_atrdy, atrdy_timeout, 0);
|
||||||
setup_timer(&ucs->timer_cmd_in, cmd_in_timeout, (unsigned long) cs);
|
timer_setup(&ucs->timer_cmd_in, cmd_in_timeout, 0);
|
||||||
setup_timer(&ucs->timer_int_in, int_in_resubmit, (unsigned long) cs);
|
timer_setup(&ucs->timer_int_in, int_in_resubmit, 0);
|
||||||
init_waitqueue_head(&ucs->waitqueue);
|
init_waitqueue_head(&ucs->waitqueue);
|
||||||
INIT_WORK(&ucs->int_in_wq, int_in_work);
|
INIT_WORK(&ucs->int_in_wq, int_in_work);
|
||||||
|
|
||||||
|
@ -153,9 +153,9 @@ static int test_timeout(struct at_state_t *at_state)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void timer_tick(unsigned long data)
|
static void timer_tick(struct timer_list *t)
|
||||||
{
|
{
|
||||||
struct cardstate *cs = (struct cardstate *) data;
|
struct cardstate *cs = from_timer(cs, t, timer);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
unsigned channel;
|
unsigned channel;
|
||||||
struct at_state_t *at_state;
|
struct at_state_t *at_state;
|
||||||
@ -687,7 +687,7 @@ struct cardstate *gigaset_initcs(struct gigaset_driver *drv, int channels,
|
|||||||
cs->ignoreframes = ignoreframes;
|
cs->ignoreframes = ignoreframes;
|
||||||
INIT_LIST_HEAD(&cs->temp_at_states);
|
INIT_LIST_HEAD(&cs->temp_at_states);
|
||||||
cs->running = 0;
|
cs->running = 0;
|
||||||
init_timer(&cs->timer); /* clear next & prev */
|
timer_setup(&cs->timer, timer_tick, 0);
|
||||||
spin_lock_init(&cs->ev_lock);
|
spin_lock_init(&cs->ev_lock);
|
||||||
cs->ev_tail = 0;
|
cs->ev_tail = 0;
|
||||||
cs->ev_head = 0;
|
cs->ev_head = 0;
|
||||||
@ -768,7 +768,6 @@ struct cardstate *gigaset_initcs(struct gigaset_driver *drv, int channels,
|
|||||||
spin_lock_irqsave(&cs->lock, flags);
|
spin_lock_irqsave(&cs->lock, flags);
|
||||||
cs->running = 1;
|
cs->running = 1;
|
||||||
spin_unlock_irqrestore(&cs->lock, flags);
|
spin_unlock_irqrestore(&cs->lock, flags);
|
||||||
setup_timer(&cs->timer, timer_tick, (unsigned long) cs);
|
|
||||||
cs->timer.expires = jiffies + msecs_to_jiffies(GIG_TICK);
|
cs->timer.expires = jiffies + msecs_to_jiffies(GIG_TICK);
|
||||||
add_timer(&cs->timer);
|
add_timer(&cs->timer);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user