mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 04:40:53 +07:00
[WATCHDOG] pcwd.c - fix open_allowed type.
Fix following warnings: drivers/watchdog/pcwd.c: In function 'pcwd_open': drivers/watchdog/pcwd.c:703: warning: passing argument 2 of 'test_and_set_bit' from incompatible pointer type drivers/watchdog/pcwd.c: In function 'pcwd_close': drivers/watchdog/pcwd.c:723: warning: passing argument 2 of 'clear_bit' from incompatible pointer type Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
parent
9229376e9b
commit
36cbaa8777
@ -168,7 +168,7 @@ static const int heartbeat_tbl[] = {
|
||||
static int cards_found;
|
||||
|
||||
/* internal variables */
|
||||
static atomic_t open_allowed = ATOMIC_INIT(1);
|
||||
static unsigned long open_allowed;
|
||||
static char expect_close;
|
||||
static int temp_panic;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user