Coccinelle release 1.0.0-rc4
[bpt/coccinelle.git] / tests / axnet.c
1 static void axnet_config(struct pcmcia_device *link)
2 {
3 if (last_ret != CS_SUCCESS) {
4 cs_error(link, RequestIO, last_ret);
5 goto failed;
6 }
7 return;
8
9 cs_failed:
10 cs_error(link, last_fn, last_ret);
11 failed:
12 axnet_release(link);
13 link->state &= ~DEV_CONFIG_PENDING;
14 return;
15 }