diff options
author | Ursula Braun <braunu@de.ibm.com> | 2008-02-08 07:09:03 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2008-02-11 11:14:48 -0500 |
commit | 21b26f2fee6883f69f56fb8ff6c2996eda45b063 (patch) | |
tree | 21f551d30cd25c7b66a40154643d4495e6aedf27 /drivers/s390/net/netiucv.c | |
parent | 2219510f083ee4d7e9e6bb0dedda70334f073dc4 (diff) |
netiucv: change name of nop function
Dummy NOP actions for fsm-statemachines have to be defined
separately for every using module of fsm-statemachines.
Thus the generic name fsm_action_nop is replaced by
module specific name netiucv_action_nop.
Signed-off-by: Ursula Braun <braunu@de.ibm.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/s390/net/netiucv.c')
-rw-r--r-- | drivers/s390/net/netiucv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/s390/net/netiucv.c b/drivers/s390/net/netiucv.c index 05c9e4dbb7be..42d701b5921c 100644 --- a/drivers/s390/net/netiucv.c +++ b/drivers/s390/net/netiucv.c | |||
@@ -573,9 +573,9 @@ static void netiucv_callback_connres(struct iucv_path *path, u8 ipuser[16]) | |||
573 | } | 573 | } |
574 | 574 | ||
575 | /** | 575 | /** |
576 | * Dummy NOP action for all statemachines | 576 | * NOP action for statemachines |
577 | */ | 577 | */ |
578 | static void fsm_action_nop(fsm_instance *fi, int event, void *arg) | 578 | static void netiucv_action_nop(fsm_instance *fi, int event, void *arg) |
579 | { | 579 | { |
580 | } | 580 | } |
581 | 581 | ||
@@ -1111,7 +1111,7 @@ static const fsm_node dev_fsm[] = { | |||
1111 | 1111 | ||
1112 | { DEV_STATE_RUNNING, DEV_EVENT_STOP, dev_action_stop }, | 1112 | { DEV_STATE_RUNNING, DEV_EVENT_STOP, dev_action_stop }, |
1113 | { DEV_STATE_RUNNING, DEV_EVENT_CONDOWN, dev_action_conndown }, | 1113 | { DEV_STATE_RUNNING, DEV_EVENT_CONDOWN, dev_action_conndown }, |
1114 | { DEV_STATE_RUNNING, DEV_EVENT_CONUP, fsm_action_nop }, | 1114 | { DEV_STATE_RUNNING, DEV_EVENT_CONUP, netiucv_action_nop }, |
1115 | }; | 1115 | }; |
1116 | 1116 | ||
1117 | static const int DEV_FSM_LEN = sizeof(dev_fsm) / sizeof(fsm_node); | 1117 | static const int DEV_FSM_LEN = sizeof(dev_fsm) / sizeof(fsm_node); |