summaryrefslogtreecommitdiff
path: root/patches/0076-reset-notify.cocci
blob: e6ad7a0250430ba31ac0ca4631cabfd94a2bcedb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@@
identifier handlers;
identifier fn;
@@
struct pci_error_handlers handlers = {
+#if LINUX_VERSION_IS_GEQ(3,16,0)
.reset_notify = fn,
+#endif
 };

@@
identifier handlers;
identifier fn;
@@
struct pci_error_handlers handlers[] = {{
+#if LINUX_VERSION_IS_GEQ(3,16,0)
.reset_notify = fn,
+#endif
 }};