summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-09-17 19:35:05 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-09-21 16:13:53 +0200
commitec3bce94d9540442f47176858bdde1251f8768cc (patch)
treedbd05fc6956ff82c4f9ab4bcf8220ec012886706
parent364aca401a5643267bdf895aa4ce48f1b14f9d9f (diff)
add comments after endifs
* device/ds_routines.c [CONFIG_PCMCIA, CONFIG_INET, LINUX_DEV, MACH_HYP]: Add comments after endifs.
-rw-r--r--device/ds_routines.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/device/ds_routines.c b/device/ds_routines.c
index 028e700b..ee575e5b 100644
--- a/device/ds_routines.c
+++ b/device/ds_routines.c
@@ -102,13 +102,13 @@ extern struct device_emulation_ops linux_net_emulation_ops;
extern void free_skbuffs ();
#ifdef CONFIG_PCMCIA
extern struct device_emulation_ops linux_pcmcia_emulation_ops;
-#endif
-#endif
-#endif
+#endif /* CONFIG_PCMCIA */
+#endif /* CONFIG_INET */
+#endif /* LINUX_DEV */
#ifdef MACH_HYP
extern struct device_emulation_ops hyp_block_emulation_ops;
extern struct device_emulation_ops hyp_net_emulation_ops;
-#endif
+#endif /* MACH_HYP */
extern struct device_emulation_ops mach_device_emulation_ops;
/* List of emulations. */
@@ -120,13 +120,13 @@ static struct device_emulation_ops *emulation_list[] =
&linux_net_emulation_ops,
#ifdef CONFIG_PCMCIA
&linux_pcmcia_emulation_ops,
-#endif
-#endif
-#endif
+#endif /* CONFIG_PCMCIA */
+#endif /* CONFIG_INET */
+#endif /* LINUX_DEV */
#ifdef MACH_HYP
&hyp_block_emulation_ops,
&hyp_net_emulation_ops,
-#endif
+#endif /* MACH_HYP */
&mach_device_emulation_ops,
};