Home
last modified time | relevance | path

Searched refs:comment (Results 1 – 200 of 286) sorted by relevance

12

/linux-4.1.27/include/linux/netfilter/ipset/
Dip_set_comment.h20 ip_set_init_comment(struct ip_set_comment *comment, in ip_set_init_comment() argument
23 size_t len = ext->comment ? strlen(ext->comment) : 0; in ip_set_init_comment()
25 if (unlikely(comment->str)) { in ip_set_init_comment()
26 kfree(comment->str); in ip_set_init_comment()
27 comment->str = NULL; in ip_set_init_comment()
33 comment->str = kzalloc(len + 1, GFP_ATOMIC); in ip_set_init_comment()
34 if (unlikely(!comment->str)) in ip_set_init_comment()
36 strlcpy(comment->str, ext->comment, len + 1); in ip_set_init_comment()
40 ip_set_put_comment(struct sk_buff *skb, struct ip_set_comment *comment) in ip_set_put_comment() argument
42 if (!comment->str) in ip_set_put_comment()
[all …]
/linux-4.1.27/drivers/media/usb/
DKconfig12 comment "Webcam devices"
24 comment "Analog TV USB devices"
33 comment "Analog/digital TV USB devices"
41 comment "Digital TV USB devices"
52 comment "Webcam, TV (analog/digital) USB devices"
57 comment "Software defined radio USB devices"
/linux-4.1.27/drivers/media/pci/cx18/
Dcx18-cards.c64 .comment = "Simultaneous Digital and Analog TV capture supported\n",
111 .comment = "Simultaneous Digital and Analog TV capture supported\n",
158 .comment = "Simultaneous Digital and Analog TV capture supported\n",
214 .comment = "Analog TV capture supported\n",
261 .comment = "Experimenters needed for device to work well.\n"
321 .comment = "Experimenters needed for device to work well.\n"
381 .comment = "Analog TV capture supported\n",
435 .comment = "Experimenters and photos needed for device to work well.\n"
478 .comment = "Experimenters and photos needed for device to work well.\n"
531 .comment = "Simultaneous DVB-T and Analog capture supported,\n"
Dcx18-cards.h130 char *comment; member
/linux-4.1.27/scripts/
Dnamespace.pl241 my $comment;
246 $comment = "GCC:GCC:";
250 $comment .= substr($_, 43);
254 if (!defined($comment) || $comment !~ /GCC\:.*GCC\:/m) {
Dcheckpatch.pl775 my $comment = "";
780 $comment = $3 if defined $3;
783 $comment = $2 if defined $2;
786 $comment = $2 if defined $2;
800 $comment = "";
814 return ($name, $address, $comment);
2187 my ($email_name, $email_address, $comment) = parse_email($email);
2198 if ("$dequoted$comment" ne $email &&
2199 "<$email_address>$comment" ne $email &&
2200 "$suggested_email$comment" ne $email) {
[all …]
/linux-4.1.27/drivers/media/pci/
DKconfig12 comment "Media capture support"
18 comment "Media capture/analog TV support"
27 comment "Media capture/analog/hybrid TV support"
39 comment "Media digital TV PCI Adapters"
/linux-4.1.27/sound/pci/hda/
DKconfig116 comment "Set to Y if you want auto-loading the codec driver"
126 comment "Set to Y if you want auto-loading the codec driver"
136 comment "Set to Y if you want auto-loading the codec driver"
146 comment "Set to Y if you want auto-loading the codec driver"
156 comment "Set to Y if you want auto-loading the codec driver"
171 comment "Set to Y if you want auto-loading the codec driver"
181 comment "Set to Y if you want auto-loading the codec driver"
191 comment "Set to Y if you want auto-loading the codec driver"
200 comment "Set to Y if you want auto-loading the codec driver"
222 comment "Set to Y if you want auto-loading the codec driver"
[all …]
/linux-4.1.27/tools/perf/util/
Dconfig.c59 int quote = 0, comment = 0, space = 0; in parse_value() local
73 if (comment) in parse_value()
81 comment = 1; in parse_value()
216 int comment = 0; in perf_parse_file() local
245 comment = 0; in perf_parse_file()
248 if (comment || isspace(c)) in perf_parse_file()
251 comment = 1; in perf_parse_file()
Dannotate.c145 static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep) in comment__symbol() argument
152 *addrp = strtoull(comment, &endptr, 16); in comment__symbol()
236 char *s = strchr(ops->raw, ','), *target, *comment, prev; in mov__parse() local
249 comment = strchr(s, '#'); in mov__parse()
251 if (comment != NULL) in mov__parse()
252 s = comment - 1; in mov__parse()
268 if (comment == NULL) in mov__parse()
271 while (comment[0] != '\0' && isspace(comment[0])) in mov__parse()
272 ++comment; in mov__parse()
274 comment__symbol(ops->source.raw, comment, &ops->source.addr, &ops->source.name); in mov__parse()
[all …]
/linux-4.1.27/arch/alpha/boot/
Dbootloader.lds23 .comment 0 : { *(.comment) }
/linux-4.1.27/arch/arm/mach-shmobile/
DKconfig45 #comment "Renesas ARM SoCs System Type"
92 comment "Renesas ARM SoCs Board Type"
99 comment "Renesas ARM SoCs System Configuration"
104 comment "Renesas ARM SoCs System Type"
134 comment "Renesas ARM SoCs Board Type"
182 comment "Renesas ARM SoCs System Configuration"
/linux-4.1.27/Documentation/
Dkernel-doc-nano-HOWTO.txt41 The opening comment mark "/**" is reserved for kernel-doc comments.
43 and any comment so marked must be in kernel-doc format. Do not use
44 "/**" to be begin a comment block unless the comment block contains
45 kernel-doc formatted comments. The closing comment marker for
52 Example kernel-doc function comment:
63 * empty comment line, and may include additional embedded empty
64 * comment lines.
73 the comment block.
77 empty comment lines.
86 Example kernel-doc data structure comment.
[all …]
DCodingStyle447 try to explain HOW your code works in a comment: it's much better to
453 function is so complex that you need to separately comment parts of it,
481 /* The preferred comment style for files in net/ and drivers/net
484 * It is nearly the same as the generally preferred comment style,
488 It's also important to comment data, whether they are basic types or derived
490 multiple data declarations). This leaves you room for a small comment on each
550 "indent" has a lot of options, and especially when it comes to comment
918 place a comment after the #endif on the same line, noting the conditional
DSubmitChecklist95 24: All memory barriers {e.g., barrier(), rmb(), wmb()} need a comment in the
/linux-4.1.27/arch/m32r/kernel/
Dvmlinux.lds.S73 .comment 0 : { *(.comment) }
/linux-4.1.27/arch/arm/boot/bootp/
Dbootp.lds29 .comment 0 : { *(.comment) }
/linux-4.1.27/arch/arm/boot/compressed/
Dvmlinux.lds.S86 .comment 0 : { *(.comment) }
/linux-4.1.27/arch/m68k/kernel/
Dvmlinux-std.lds59 .comment 0 : { *(.comment) }
Dvmlinux-nommu.lds86 .comment 0 : { *(.comment) }
/linux-4.1.27/arch/frv/kernel/
Dvmlinux.lds.S127 .comment 0 : { *(.comment) }
/linux-4.1.27/arch/unicore32/boot/compressed/
Dvmlinux.lds.in59 .comment 0 : { *(.comment) }
/linux-4.1.27/drivers/misc/mic/
DKconfig1 comment "Intel MIC Bus Driver"
18 comment "Intel MIC Host Driver"
38 comment "Intel MIC Card Driver"
/linux-4.1.27/drivers/input/joystick/
Dsidewinder.c543 static void sw_3dp_id(unsigned char *buf, char *comment, size_t size) in sw_3dp_id() argument
556 snprintf(comment, size, " [PnP %d.%02d id %s rev %s]", in sw_3dp_id()
595 char comment[40]; in sw_connect() local
597 comment[0] = 0; in sw_connect()
695 sprintf(comment, " [AC %s]", sw_get_bits(idbuf,38,1,3) ? "off" : "on"); in sw_connect()
706 sw_3dp_id(idbuf, comment, sizeof(comment)); in sw_connect()
779 dbg("%s%s [%d-bit id %d data %d]\n", sw->name, comment, m, l, k); in sw_connect()
/linux-4.1.27/arch/sparc/boot/
DMakefile18 cmd_strip = $(STRIP) -R .comment -R .note -K sun4u_init -K _end -K _start $< -o $@
42 OBJCOPYFLAGS_image.bin := -S -O binary -R .note -R .comment
/linux-4.1.27/arch/ia64/hp/sim/boot/
Dbootloader.lds39 .comment 0 : { *(.comment) }
/linux-4.1.27/arch/unicore32/mm/
DKconfig1 comment "Processor Type"
10 comment "Processor Features"
/linux-4.1.27/arch/nios2/platform/
DKconfig.platform3 comment "Memory settings"
16 comment "Device tree"
53 comment "Nios II instructions"
96 comment "Cache settings"
/linux-4.1.27/arch/x86/crypto/
Dsalsa20-x86_64-asm_64.S19 # comment:fp stack unchanged by jump
22 # comment:fp stack unchanged by fallthrough
77 # comment:fp stack unchanged by jump
92 # comment:fp stack unchanged by fallthrough
597 # comment:fp stack unchanged by jump
748 # comment:fp stack unchanged by jump
751 # comment:fp stack unchanged by jump
762 # comment:fp stack unchanged by fallthrough
785 # comment:fp stack unchanged by fallthrough
801 # comment:fp stack unchanged by jump
[all …]
/linux-4.1.27/arch/s390/kernel/vdso32/
Dvdso32.lds.S60 .comment 0 : { *(.comment) }
/linux-4.1.27/arch/s390/kernel/vdso64/
Dvdso64.lds.S60 .comment 0 : { *(.comment) }
/linux-4.1.27/arch/powerpc/kernel/vdso32/
Dvdso32.lds.S79 .comment 0 : { *(.comment) }
/linux-4.1.27/arch/powerpc/kernel/vdso64/
Dvdso64.lds.S78 .comment 0 : { *(.comment) }
/linux-4.1.27/include/uapi/linux/netfilter/
Dxt_comment.h7 char comment[XT_MAX_COMMENT_LEN]; member
/linux-4.1.27/drivers/media/mmc/
DKconfig1 comment "Supported MMC/SDIO adapters"
/linux-4.1.27/sound/pci/ice1712/
Dse.c366 const char *comment; member
374 .comment = "Front(green)"
381 .comment = "Surround(orange)"
388 .comment = "SurroundBack(white)"
395 .comment = "Center(Lch)&SubWoofer(Rch)(black)"
/linux-4.1.27/Documentation/scsi/
DChangeLog.arcmsr14 ** thanks for peoples kindness comment
24 ** (Kornel Wieliczek's comment)
29 ** bug fix enormous stack usage (Adrian Bunk's comment)
40 ** 1.20.00.11 9/29/2005 Erich Chen by comment of Arjan van de Ven fix incorrect msleep…
Dscsi-parameters.txt33 See drivers/scsi/BusLogic.c, comment before function
123 See comment before function dc390_setup() in
/linux-4.1.27/drivers/isdn/hardware/
DKconfig4 comment "CAPI hardware drivers"
/linux-4.1.27/drivers/misc/altera-stapl/
DKconfig1 comment "Altera FPGA firmware download module"
/linux-4.1.27/drivers/net/wimax/
DKconfig6 comment "Enable WiMAX (Networking options) to see the WiMAX drivers"
/linux-4.1.27/arch/mn10300/
DKconfig394 comment "[!] NOTE: A lower number/level indicates a higher priority (0 is highest, 6 is lowest)"
396 comment "____Non-maskable interrupt levels____"
397 comment "The following must be set to a higher priority than local_irq_disable() and on-chip serial"
409 comment "The following must be set to a higher priority than local_irq_disable()"
421 comment "-"
422 comment "____Maskable interrupt levels____"
439 comment "The following must be set to a equal to or lower priority than LINUX_CLI_LEVEL"
DMakefile22 OBJCOPYFLAGS := -O binary -R .note -R .comment -R .GCC-command-line -R .note.gnu.build-id -S
/linux-4.1.27/arch/powerpc/boot/
DzImage.coff.lds.S47 *(.comment)
/linux-4.1.27/arch/arm/mach-bcm/
DKconfig8 comment "IPROC architected SoCs"
54 comment "KONA architected SoCs"
108 comment "Other Architectures"
/linux-4.1.27/drivers/vme/boards/
DKconfig1 comment "VME Board Drivers"
/linux-4.1.27/drivers/media/
DKconfig16 comment "Multimedia core support"
161 comment "Media drivers"
174 comment "Supported FireWire (IEEE 1394) Adapters"
181 comment "Media ancillary drivers (tuners, sensors, i2c, frontends)"
/linux-4.1.27/drivers/vme/bridges/
DKconfig1 comment "VME Bridge Drivers"
/linux-4.1.27/drivers/pps/generators/
DKconfig5 comment "PPS generators support"
/linux-4.1.27/arch/arm/mach-iop13xx/
DKconfig5 comment "IOP13XX Platform Support"
/linux-4.1.27/arch/cris/boot/
DMakefile5 objcopyflags-$(CONFIG_ETRAX_ARCH_V10) += -R .note -R .comment
/linux-4.1.27/drivers/media/common/
DKconfig5 comment "common driver options"
/linux-4.1.27/drivers/hsi/controllers/
DKconfig4 comment "HSI controllers"
/linux-4.1.27/arch/arm/mach-iop33x/
DKconfig5 comment "IOP33x Platform Types"
/linux-4.1.27/arch/arm/mach-imx/
DKconfig106 comment "MX1 platforms:"
134 comment "MX21 platforms:"
147 comment "MX27 platforms:"
229 comment "MX31 platforms:"
402 comment "MX35 platforms:"
501 comment "Device tree only"
515 comment "Device tree only"
/linux-4.1.27/arch/arm/mach-s3c24xx/
DKconfig25 comment "S3C24XX SoCs"
175 comment "S3C2410 Boards"
303 comment "S3C2412 Boards"
375 comment "S3C2416 Boards"
431 comment "S3C2440 Boards"
529 comment "S3C2442 Boards"
572 comment "S3C2443 Boards"
/linux-4.1.27/arch/xtensa/boot/boot-elf/
DMakefile22 $(Q)$(OBJCOPY) $(OBJCOPY_ARGS) -R .comment \
/linux-4.1.27/drivers/media/i2c/
DKconfig27 comment "Audio decoders, processors and mixers"
162 comment "RDS decoders"
176 comment "Video decoders"
355 comment "Video and audio decoders"
368 comment "Video encoders"
461 comment "Camera sensor devices"
617 comment "Flash devices"
653 comment "Video improvement chips"
678 comment "Audio/Video compression chips"
691 comment "Miscellaneous helper chips"
/linux-4.1.27/arch/mips/boot/compressed/
Dld.script50 *(.comment)
DMakefile48 OBJCOPYFLAGS_vmlinux.bin := $(OBJCOPYFLAGS) -O binary -R .comment -S
/linux-4.1.27/arch/openrisc/
DMakefile23 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
/linux-4.1.27/Documentation/kbuild/
Dkconfig-language.txt240 comment "module support disabled"
244 MODULES is different from 'n'. The comment on the other hand is always
246 also part of the comment dependencies).
258 - comment
301 comment:
303 "comment" <prompt>
304 <comment options>
306 This defines a comment which is displayed to the user during the
/linux-4.1.27/arch/xtensa/boot/
DMakefile34 OBJCOPYFLAGS = --strip-all -R .comment -R .note.gnu.build-id -O binary
/linux-4.1.27/arch/arc/boot/
DMakefile7 OBJCOPYFLAGS= -O binary -R .note -R .note.gnu.build-id -R .comment -S
/linux-4.1.27/drivers/usb/gadget/udc/bdc/
DKconfig14 comment "Platform Support"
/linux-4.1.27/arch/unicore32/
DMakefile21 OBJCOPYFLAGS := -O binary -R .note -R .note.gnu.build-id -R .comment -S
DKconfig120 comment "Floating poing support"
/linux-4.1.27/Documentation/zh_CN/
DSecurityBugs3 If you have any comment or update to the content, please contact the
Dstable_kernel_rules.txt3 If you have any comment or update to the content, please contact the
DIRQ.txt3 If you have any comment or update to the content, please contact the
Dstable_api_nonsense.txt3 If you have any comment or update to the content, please contact the
Dbasic_profiling.txt3 If you have any comment or update to the content, please post to LKML directly.
Dio_ordering.txt3 If you have any comment or update to the content, please contact the
Dsparse.txt3 If you have any comment or update to the content, please contact the
Dvolatile-considered-harmful.txt3 If you have any comment or update to the content, please contact the
DSubmittingDrivers3 If you have any comment or update to the content, please contact the
Demail-clients.txt3 If you have any comment or update to the content, please contact the
Doops-tracing.txt3 If you have any comment or update to the content, please contact the
DSubmittingPatches3 If you have any comment or update to the content, please contact the
DHOWTO3 If you have any comment or update to the content, please contact the
Dgpio.txt3 If you have any comment or update to the content, please contact the
/linux-4.1.27/arch/blackfin/mach-bf518/
DKconfig11 comment "Alternative Multiplexing Scheme"
85 comment "Hysteresis/Schmitt Trigger Control"
146 comment "Interrupt Priority Assignment"
/linux-4.1.27/arch/blackfin/mach-bf527/
DKconfig11 comment "Alternative Multiplexing Scheme"
82 comment "Hysteresis/Schmitt Trigger Control"
148 comment "Interrupt Priority Assignment"
/linux-4.1.27/arch/xtensa/boot/boot-redboot/
DMakefile23 $(Q)$(OBJCOPY) $(OBJCOPY_ARGS) -R .comment \
/linux-4.1.27/arch/microblaze/boot/
DMakefile7 OBJCOPYFLAGS := -R .note -R .comment -R .note.gnu.build-id -O binary
/linux-4.1.27/drivers/media/dvb-frontends/
DKconfig4 comment "Multistandard (satellite) frontends"
45 comment "Multistandard (cable + terrestrial) frontends"
75 comment "DVB-S (satellite) frontends"
262 comment "DVB-T (terrestrial) frontends"
481 comment "DVB-C (cable) frontends"
512 comment "ATSC (North American/Korean Terrestrial/Cable DTV) frontends"
634 comment "ISDB-T (terrestrial) frontends"
661 comment "ISDB-S (satellite) & ISDB-T (terrestrial) frontends"
672 comment "Digital terrestrial only tuners/PLL"
701 comment "SEC control devices for DVB-S"
[all …]
/linux-4.1.27/arch/frv/boot/
DMakefile20 OBJCOPYFLAGS :=-O binary -R .note -R .note.gnu.build-id -R .comment
/linux-4.1.27/drivers/staging/iio/trigger/
DKconfig4 comment "Triggers - standalone"
/linux-4.1.27/drivers/usb/dwc3/
DKconfig43 comment "Platform Glue Driver Support"
100 comment "Debugging features"
/linux-4.1.27/arch/sh/include/asm/
Dromimage-macros.h5 .macro LIST comment
/linux-4.1.27/arch/m32r/
DMakefile11 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
/linux-4.1.27/arch/arm/mach-prima2/
DKconfig14 comment "CSR SiRF atlas6/primaII/Atlas7 Specific Features"
/linux-4.1.27/Documentation/zh_CN/arm64/
Dtagged-pointers.txt3 If you have any comment or update to the content, please contact the
Dlegacy_instructions.txt3 If you have any comment or update to the content, please contact the
Dmemory.txt3 If you have any comment or update to the content, please contact the
Dbooting.txt3 If you have any comment or update to the content, please contact the
/linux-4.1.27/drivers/net/wireless/ath/wil6210/
Dfw.h102 u8 comment[32]; /* short description */ member
Dfw_inc.c196 wil_hex_dump_fw("", DUMP_PREFIX_OFFSET, 16, 1, d->comment, in fw_handle_file_header()
197 sizeof(d->comment), true); in fw_handle_file_header()
/linux-4.1.27/arch/blackfin/mach-bf561/
DKconfig9 comment "Core B Support"
17 comment "Interrupt Priority Assignment"
/linux-4.1.27/scripts/kconfig/
Dzconf.gperf21 comment, T_COMMENT, TF_COMMAND
Dzconf.hash.c_shipped112 char kconf_id_strings_str32[sizeof("comment")];
148 "comment",
Dzconf.y389 comment: T_COMMENT prompt T_EOL
396 comment_stmt: comment depends_list
/linux-4.1.27/arch/metag/
DMakefile17 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
/linux-4.1.27/drivers/net/wimax/i2400m/
DKconfig7 comment "Enable USB support to see WiMAX USB drivers"
/linux-4.1.27/drivers/hsi/clients/
DKconfig5 comment "HSI clients"
/linux-4.1.27/drivers/staging/vme/devices/
DKconfig1 comment "VME Device Drivers"
/linux-4.1.27/drivers/usb/image/
DKconfig4 comment "USB Imaging devices"
/linux-4.1.27/drivers/sh/intc/
DKconfig7 comment "Interrupt controller options"
/linux-4.1.27/arch/arm/include/debug/
Dsa1100.S28 @ the comment in arch/arm/mach-sa1100/include/mach/uncompress.h.
/linux-4.1.27/drivers/devfreq/
DKconfig31 comment "DEVFREQ Governors"
67 comment "DEVFREQ Drivers"
/linux-4.1.27/net/irda/
DKconfig27 comment "IrDA protocols"
46 comment "IrDA options"
/linux-4.1.27/arch/arm/mach-shmobile/include/mach/
Dzboot_macros.h5 .macro LIST comment
/linux-4.1.27/include/linux/
Damigaffs.h88 u8 comment[92]; member
/linux-4.1.27/drivers/pps/clients/
DKconfig7 comment "PPS clients support"
/linux-4.1.27/arch/arm64/
DMakefile15 OBJCOPYFLAGS :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
/linux-4.1.27/arch/arm/mach-iop32x/
DKconfig5 comment "IOP32x Platform Types"
/linux-4.1.27/drivers/memstick/core/
DKconfig5 comment "MemoryStick drivers"
/linux-4.1.27/Documentation/zh_CN/arm/
DBooting3 If you have any comment or update to the content, please contact the
Dkernel_user_helpers.txt3 If you have any comment or update to the content, please contact the
/linux-4.1.27/arch/blackfin/mach-bf533/
DKconfig7 comment "Interrupt Priority Assignment"
/linux-4.1.27/arch/microblaze/
DKconfig.platform29 comment "Definitions for MICROBLAZE0"
DKconfig89 comment "Boot options"
147 comment "Default settings for advanced configuration options are used"
/linux-4.1.27/Documentation/ja_JP/
Dstable_kernel_rules.txt10 comment or update of this file, please try to update Original(English)
/linux-4.1.27/arch/arm/mach-omap1/
DKconfig5 comment "OMAP Core Type"
34 comment "OMAP Board Type"
/linux-4.1.27/drivers/pnp/
DKconfig39 comment "Protocols"
/linux-4.1.27/arch/blackfin/mach-bf537/
DKconfig7 comment "Interrupt Priority Assignment"
/linux-4.1.27/arch/cris/
DMakefile49 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
/linux-4.1.27/arch/parisc/
DMakefile45 OBJCOPY_FLAGS =-O binary -R .note -R .comment -S
/linux-4.1.27/drivers/net/caif/
DKconfig5 comment "CAIF transport drivers"
/linux-4.1.27/arch/s390/boot/compressed/
DMakefile41 OBJCOPYFLAGS_vmlinux.bin := -R .comment -S
/linux-4.1.27/drivers/usb/class/
DKconfig4 comment "USB Device Class drivers"
/linux-4.1.27/arch/mips/boot/
DMakefile21 drop-sections := .reginfo .mdebug .comment .note .pdr .options .MIPS.options
/linux-4.1.27/arch/arm/mach-omap2/
DKconfig124 comment "OMAP Core Type"
163 comment "OMAP Legacy Platform Data Board Type"
/linux-4.1.27/arch/nios2/
DKconfig97 comment "Boot options"
154 comment "Default settings for advanced configuration options are used"
/linux-4.1.27/net/netfilter/ipvs/
DKconfig75 comment "IPVS transport protocol load balancing support"
111 comment "IPVS scheduler"
243 comment 'IPVS SH scheduler'
258 comment 'IPVS application helper'
/linux-4.1.27/Documentation/vm/
Dremap_file_pages.txt26 vm.max_map_count limit more easily due to additional VMAs. See comment for
/linux-4.1.27/sound/soc/fsl/
DKconfig3 comment "Common SoC Audio options for Freescale CPUs:"
95 comment "SoC Audio support for Freescale PPC boards:"
184 comment "SoC Audio support for Freescale i.MX boards:"
/linux-4.1.27/drivers/media/i2c/soc_camera/
DKconfig1 comment "soc_camera sensor drivers"
/linux-4.1.27/arch/mips/txx9/
DKconfig108 comment "Multiplex Pin Select"
/linux-4.1.27/tools/power/acpi/
DMakefile92 STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
/linux-4.1.27/drivers/media/pci/ivtv/
Divtv-cards.h271 char *comment; member
/linux-4.1.27/drivers/memstick/host/
DKconfig5 comment "MemoryStick Host Controller Drivers"
/linux-4.1.27/arch/blackfin/mach-bf538/
DKconfig7 comment "Interrupt Priority Assignment"
/linux-4.1.27/arch/ia64/kernel/
Dvmlinux.lds.S29 *(.comment)
/linux-4.1.27/arch/blackfin/
DKconfig78 comment "Processor and Board Settings"
425 comment "Clock/PLL Setup"
653 comment "Kernel Timer/Scheduler"
694 comment "Misc"
747 comment "Memory Optimizations"
936 comment "Speed Optimizations"
1027 comment "Cache Support"
1112 comment "Memory Protection Unit"
1121 comment "Asynchronous Memory Configuration"
1288 comment "Possible Suspend Mem / Hibernate Wake-Up Sources"
DMakefile13 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
/linux-4.1.27/drivers/isdn/hisax/
DKconfig21 comment "D-channel protocol features"
87 comment "HiSax supported cards"
358 comment "HiSax PCMCIA card service modules"
387 comment "HiSax sub driver modules"
/linux-4.1.27/arch/m68k/
DKconfig.machine1 comment "Machine Types"
306 comment "Machine Options"
324 comment "RAM configuration"
387 comment "ROM configuration"
DKconfig.bus3 comment "Bus Support"
DKconfig.cpu1 comment "Processor Type"
295 comment "Processor Specific Options"
/linux-4.1.27/drivers/isdn/hardware/mISDN/
DKconfig4 comment "mISDN hardware drivers"
/linux-4.1.27/arch/x86/boot/compressed/
DMakefile60 OBJCOPYFLAGS_vmlinux.bin := -R .comment -S
/linux-4.1.27/arch/arm/mach-exynos/
DKconfig57 comment "EXYNOS SoCs"
/linux-4.1.27/drivers/s390/char/
DKconfig1 comment "S/390 character device drivers"
142 comment "S/390 tape hardware support"
/linux-4.1.27/drivers/input/
DKconfig80 comment "Userland interfaces"
177 comment "Input Device Drivers"
/linux-4.1.27/drivers/block/drbd/
DKconfig5 comment "DRBD disabled because PROC_FS or INET not selected"
/linux-4.1.27/tools/build/
DBuild.include46 # Replace >#< with >\#< to avoid starting a comment in the .cmd file
/linux-4.1.27/drivers/mmc/card/
DKconfig5 comment "MMC/SD/SDIO Card Drivers"
/linux-4.1.27/drivers/s390/block/
DKconfig1 comment "S/390 block device drivers"
/linux-4.1.27/arch/arm/plat-samsung/
DKconfig28 comment "Boot options"
253 comment "Power management"
/linux-4.1.27/arch/arm/mach-davinci/
DKconfig16 comment "DaVinci Core Type"
55 comment "DaVinci Board Type"
/linux-4.1.27/include/asm-generic/
Dvmlinux.lds.h605 .comment 0 : { *(.comment) }
/linux-4.1.27/Documentation/zh_CN/video4linux/
Domap3isp.txt3 If you have any comment or update to the content, please contact the
/linux-4.1.27/drivers/hid/usbhid/
DKconfig24 comment "Input core support is needed for USB HID input layer or HIDBP support"
/linux-4.1.27/arch/hexagon/
DKconfig2 comment "Linux Kernel Configuration for Hexagon"
/linux-4.1.27/drivers/scsi/arm/
DKconfig66 comment "The following drivers are not fully supported"
/linux-4.1.27/drivers/usb/storage/
DKconfig5 comment "NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may"
6 comment "also be needed; see USB_STORAGE Help for more info"
/linux-4.1.27/arch/arm/mach-ixp4xx/
DKconfig5 comment "IXP4xx Platforms"
197 comment "IXP4xx Options"
/linux-4.1.27/security/tomoyo/
Dcommon.c688 old_comment = profile->comment; in tomoyo_write_profile()
689 profile->comment = new_comment; in tomoyo_write_profile()
760 const struct tomoyo_path_info *comment = in tomoyo_read_profile() local
761 profile->comment; in tomoyo_read_profile()
764 tomoyo_set_string(head, comment ? comment->name : ""); in tomoyo_read_profile()
/linux-4.1.27/net/ipv6/netfilter/
Dip6_tables.c250 const char **comment, unsigned int *rulenum) in get_chainname_rulenum() argument
267 *comment = *chainname == hookname in get_chainname_rulenum()
288 const char *hookname, *chainname, *comment; in trace_packet() local
297 comment = comments[NF_IP6_TRACE_COMMENT_RULE]; in trace_packet()
301 &chainname, &comment, &rulenum) != 0) in trace_packet()
306 tablename, chainname, comment, rulenum); in trace_packet()
/linux-4.1.27/drivers/ata/
DKconfig83 comment "Controllers with non-SFF native interface"
211 comment "SFF controllers with custom DMA interface"
258 comment "SATA SFF controllers with BMDMA"
389 comment "PATA SFF controllers with BMDMA"
816 comment "PIO-only SFF controllers"
970 comment "Generic fallback / legacy drivers"
/linux-4.1.27/net/ipv4/netfilter/
Dip_tables.c221 const char **comment, unsigned int *rulenum) in get_chainname_rulenum() argument
238 *comment = *chainname == hookname in get_chainname_rulenum()
259 const char *hookname, *chainname, *comment; in trace_packet() local
268 comment = comments[NF_IP_TRACE_COMMENT_RULE]; in trace_packet()
272 &chainname, &comment, &rulenum) != 0) in trace_packet()
277 tablename, chainname, comment, rulenum); in trace_packet()
/linux-4.1.27/drivers/ptp/
DKconfig56 comment "Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks."
/linux-4.1.27/firmware/
DWHENCE46 Found in alsa-firmware package in hex form with a comment claiming to
47 be GPLv2+, but without source -- and with another comment saying "ESS
61 Found alsa-firmware package in hex form, with the following comment:
300 * code retain the above copyright notice and this comment without
690 Found in hex form in kernel source, with the following comment:
/linux-4.1.27/crypto/
DKconfig22 comment "Crypto core or helper"
201 comment "Authenticated Encryption with Associated Data"
229 comment "Block modes"
298 comment "Hash modes"
340 comment "Digest"
707 comment "Ciphers"
1383 comment "Compression"
1438 comment "Random Number Generation"
/linux-4.1.27/drivers/usb/dwc2/
DKconfig32 comment "Gadget/Dual-role mode requires USB Gadget support to be enabled"
/linux-4.1.27/drivers/extcon/
DKconfig15 comment "Extcon Device Drivers"
/linux-4.1.27/drivers/usb/core/
DKconfig17 comment "Miscellaneous USB options"
/linux-4.1.27/arch/powerpc/boot/dts/
Dp1020utm-pc.dtsi134 when there isn't any. So, just comment it out.
Dp1020mbg-pc.dtsi145 when there isn't any. So, just comment it out.
/linux-4.1.27/drivers/leds/trigger/
DKconfig92 comment "iptables trigger is under Netfilter config (LED target)"
/linux-4.1.27/arch/arm/mach-pxa/
DKconfig5 comment "Intel/Marvell Dev Platforms (sorted by hardware release time)"
74 comment "Third Party Dev Platforms (sorted by vendor name)"
278 comment "End-user Products (sorted by vendor name)"
/linux-4.1.27/net/mac80211/
DKconfig15 comment "CFG80211 needs to be enabled for MAC80211"
71 comment "Some wireless drivers require a rate control algorithm"
/linux-4.1.27/arch/x86/boot/
DMakefile74 OBJCOPYFLAGS_vmlinux.bin := -O binary -R .note -R .comment -S
/linux-4.1.27/arch/sh/
DMakefile80 OBJCOPYFLAGS := -O binary -R .note -R .note.gnu.build-id -R .comment \
/linux-4.1.27/drivers/media/pci/bt8xx/
Dbttvp.h315 extern void bttv_gpio_tracking(struct bttv *btv, char *comment);
/linux-4.1.27/drivers/net/irda/
DKconfig4 comment "SIR device drivers"
75 comment "Dongle support"
241 comment "FIR device drivers"
/linux-4.1.27/sound/oss/
DKconfig28 comment "Compiled-in MSND Classic support requires firmware during compilation."
90 comment "Compiled-in MSND Pinnacle support requires firmware during compilation."
167 comment "MSND Pinnacle DSP section will be configured to above parameters."
180 comment "Pinnacle-specific Device Configuration (0 disables)"
/linux-4.1.27/arch/powerpc/platforms/8xx/
DKconfig99 comment "Generic MPC8xx Options"
/linux-4.1.27/drivers/usb/musb/
DKconfig61 comment "Platform Glue Layer"
/linux-4.1.27/Documentation/zh_CN/filesystems/
Dsysfs.txt3 If you have any comment or update to the content, please contact the
/linux-4.1.27/arch/arm/nwfpe/
DChangeLog61 comment in the code beside init_flag state the kernel guarantees
/linux-4.1.27/drivers/leds/
DKconfig35 comment "LED drivers"
501 comment "LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)"
537 comment "LED Triggers"
/linux-4.1.27/drivers/usb/
DKconfig109 comment "USB port drivers"
/linux-4.1.27/arch/arm/mach-ep93xx/
DKconfig16 comment "EP93xx Platforms"
/linux-4.1.27/arch/arm/plat-omap/
DKconfig11 comment "OMAP Feature Selections"
/linux-4.1.27/drivers/ide/
DKconfig32 comment "Please see Documentation/ide/ide.txt for help/info on IDE drives"
196 comment "IDE chipset support/bugfixes"
275 comment "PCI IDE chipsets support"
797 comment "Other IDE chipsets support"
798 comment "Note: most of these also require special kernel boot parameters"
/linux-4.1.27/drivers/i2c/busses/
DKconfig8 comment "PC SMBus host controller drivers"
281 comment "ACPI drivers"
295 comment "Mac SMBus host controller drivers"
322 comment "I2C system bus drivers (mostly embedded / system-on-chip)"
940 comment "External I2C/SMBus adapter drivers"
1058 comment "Other I2C/SMBus bus drivers"
/linux-4.1.27/Documentation/video4linux/
Dpxa_camera.txt72 - an arrow with a comment is a mandatory transition (no condition)
/linux-4.1.27/drivers/net/wireless/iwlwifi/
DKconfig74 comment "WARNING: iwlwifi is useless without IWLDVM or IWLMVM"

12