V4L/DVB (10166): dvb frontend: stop using non-C99 compliant comments

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

+14 -14
+14 -14
include/linux/dvb/frontend.h
··· 62 62 FE_CAN_HIERARCHY_AUTO = 0x100000, 63 63 FE_CAN_8VSB = 0x200000, 64 64 FE_CAN_16VSB = 0x400000, 65 - FE_HAS_EXTENDED_CAPS = 0x800000, // We need more bitspace for newer APIs, indicate this. 66 - FE_CAN_2G_MODULATION = 0x10000000, // frontend supports "2nd generation modulation" (DVB-S2) 67 - FE_NEEDS_BENDING = 0x20000000, // not supported anymore, don't use (frontend requires frequency bending) 68 - FE_CAN_RECOVER = 0x40000000, // frontend can recover from a cable unplug automatically 69 - FE_CAN_MUTE_TS = 0x80000000 // frontend can stop spurious TS data output 65 + FE_HAS_EXTENDED_CAPS = 0x800000, /* We need more bitspace for newer APIs, indicate this. */ 66 + FE_CAN_2G_MODULATION = 0x10000000, /* frontend supports "2nd generation modulation" (DVB-S2) */ 67 + FE_NEEDS_BENDING = 0x20000000, /* not supported anymore, don't use (frontend requires frequency bending) */ 68 + FE_CAN_RECOVER = 0x40000000, /* frontend can recover from a cable unplug automatically */ 69 + FE_CAN_MUTE_TS = 0x80000000 /* frontend can stop spurious TS data output */ 70 70 } fe_caps_t; 71 71 72 72 ··· 122 122 123 123 124 124 typedef enum fe_status { 125 - FE_HAS_SIGNAL = 0x01, /* found something above the noise level */ 126 - FE_HAS_CARRIER = 0x02, /* found a DVB signal */ 127 - FE_HAS_VITERBI = 0x04, /* FEC is stable */ 128 - FE_HAS_SYNC = 0x08, /* found sync bytes */ 129 - FE_HAS_LOCK = 0x10, /* everything's working... */ 130 - FE_TIMEDOUT = 0x20, /* no lock within the last ~2 seconds */ 131 - FE_REINIT = 0x40 /* frontend was reinitialized, */ 132 - } fe_status_t; /* application is recommended to reset */ 133 - /* DiSEqC, tone and parameters */ 125 + FE_HAS_SIGNAL = 0x01, /* found something above the noise level */ 126 + FE_HAS_CARRIER = 0x02, /* found a DVB signal */ 127 + FE_HAS_VITERBI = 0x04, /* FEC is stable */ 128 + FE_HAS_SYNC = 0x08, /* found sync bytes */ 129 + FE_HAS_LOCK = 0x10, /* everything's working... */ 130 + FE_TIMEDOUT = 0x20, /* no lock within the last ~2 seconds */ 131 + FE_REINIT = 0x40 /* frontend was reinitialized, */ 132 + } fe_status_t; /* application is recommended to reset */ 133 + /* DiSEqC, tone and parameters */ 134 134 135 135 typedef enum fe_spectral_inversion { 136 136 INVERSION_OFF,