Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c03e05d8 authored by Mark Asselstine's avatar Mark Asselstine Committed by David S. Miller
Browse files

sunhme: Cleanup use of deprecated calls to save_and_cli and restore_flags.



Make use of local_irq_save and local_irq_restore rather then the
deprecated save_and_cli and restore_flags calls.

Signed-off-by: default avatarMark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a13366c6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ static __inline__ void tx_add_log(struct happy_meal *hp, unsigned int a, unsigne
	struct hme_tx_logent *tlp;
	unsigned long flags;

	save_and_cli(flags);
	local_irq_save(flags);
	tlp = &tx_log[txlog_cur_entry];
	tlp->tstamp = (unsigned int)jiffies;
	tlp->tx_new = hp->tx_new;
@@ -119,7 +119,7 @@ static __inline__ void tx_add_log(struct happy_meal *hp, unsigned int a, unsigne
	tlp->action = a;
	tlp->status = s;
	txlog_cur_entry = (txlog_cur_entry + 1) & (TX_LOG_LEN - 1);
	restore_flags(flags);
	local_irq_restore(flags);
}
static __inline__ void tx_dump_log(void)
{