/linux-4.4.14/include/linux/netfilter/ipset/ |
D | ip_set_comment.h | 23 ip_set_init_comment(struct ip_set_comment *comment, in ip_set_init_comment() argument 26 struct ip_set_comment_rcu *c = rcu_dereference_protected(comment->c, 1); in ip_set_init_comment() 27 size_t len = ext->comment ? strlen(ext->comment) : 0; in ip_set_init_comment() 31 rcu_assign_pointer(comment->c, NULL); in ip_set_init_comment() 40 strlcpy(c->str, ext->comment, len + 1); in ip_set_init_comment() 41 rcu_assign_pointer(comment->c, c); in ip_set_init_comment() 46 ip_set_put_comment(struct sk_buff *skb, struct ip_set_comment *comment) in ip_set_put_comment() argument 48 struct ip_set_comment_rcu *c = rcu_dereference_bh(comment->c); in ip_set_put_comment() 61 ip_set_comment_free(struct ip_set_comment *comment) in ip_set_comment_free() argument 65 c = rcu_dereference_protected(comment->c, 1); in ip_set_comment_free() [all …]
|
/linux-4.4.14/drivers/media/usb/ |
D | Kconfig | 12 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.4.14/drivers/media/pci/cx18/ |
D | cx18-cards.c | 64 .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"
|
D | cx18-cards.h | 130 char *comment; member
|
/linux-4.4.14/scripts/ |
D | namespace.pl | 241 my $comment; 246 $comment = "GCC:GCC:"; 250 $comment .= substr($_, 43); 254 if (!defined($comment) || $comment !~ /GCC\:.*GCC\:/m) {
|
D | checkpatch.pl | 819 my $comment = ""; 824 $comment = $3 if defined $3; 827 $comment = $2 if defined $2; 830 $comment = $2 if defined $2; 844 $comment = ""; 858 return ($name, $address, $comment); 2268 my ($email_name, $email_address, $comment) = parse_email($email); 2279 if ("$dequoted$comment" ne $email && 2280 "<$email_address>$comment" ne $email && 2281 "$suggested_email$comment" ne $email) { [all …]
|
/linux-4.4.14/drivers/media/pci/ |
D | Kconfig | 12 comment "Media capture support" 21 comment "Media capture/analog TV support" 28 comment "Media capture/analog/hybrid TV support" 41 comment "Media digital TV PCI Adapters"
|
/linux-4.4.14/sound/pci/hda/ |
D | Kconfig | 92 comment "Set to Y if you want auto-loading the codec driver" 102 comment "Set to Y if you want auto-loading the codec driver" 112 comment "Set to Y if you want auto-loading the codec driver" 122 comment "Set to Y if you want auto-loading the codec driver" 132 comment "Set to Y if you want auto-loading the codec driver" 142 comment "Set to Y if you want auto-loading the codec driver" 152 comment "Set to Y if you want auto-loading the codec driver" 162 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" 193 comment "Set to Y if you want auto-loading the codec driver" [all …]
|
/linux-4.4.14/tools/perf/util/ |
D | config.c | 60 int quote = 0, comment = 0, space = 0; in parse_value() local 74 if (comment) in parse_value() 82 comment = 1; in parse_value() 217 int comment = 0; in perf_parse_file() local 246 comment = 0; in perf_parse_file() 249 if (comment || isspace(c)) in perf_parse_file() 252 comment = 1; in perf_parse_file()
|
D | annotate.c | 145 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.4.14/arch/alpha/boot/ |
D | bootloader.lds | 23 .comment 0 : { *(.comment) }
|
/linux-4.4.14/drivers/misc/mic/ |
D | Kconfig | 1 comment "Intel MIC Bus Driver" 18 comment "SCIF Bus Driver" 35 comment "Intel MIC Host Driver" 55 comment "Intel MIC Card Driver" 73 comment "SCIF Driver" 93 comment "Intel MIC Coprocessor State Management (COSM) Drivers"
|
/linux-4.4.14/Documentation/ |
D | kernel-doc-nano-HOWTO.txt | 41 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 …]
|
D | CodingStyle | 447 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
|
D | SubmitChecklist | 95 24: All memory barriers {e.g., barrier(), rmb(), wmb()} need a comment in the
|
/linux-4.4.14/arch/arm/boot/bootp/ |
D | bootp.lds | 29 .comment 0 : { *(.comment) }
|
/linux-4.4.14/arch/m32r/kernel/ |
D | vmlinux.lds.S | 73 .comment 0 : { *(.comment) }
|
/linux-4.4.14/arch/arm/boot/compressed/ |
D | vmlinux.lds.S | 86 .comment 0 : { *(.comment) }
|
/linux-4.4.14/arch/frv/kernel/ |
D | vmlinux.lds.S | 127 .comment 0 : { *(.comment) }
|
/linux-4.4.14/arch/m68k/kernel/ |
D | vmlinux-std.lds | 59 .comment 0 : { *(.comment) }
|
D | vmlinux-nommu.lds | 86 .comment 0 : { *(.comment) }
|
/linux-4.4.14/arch/unicore32/boot/compressed/ |
D | vmlinux.lds.in | 59 .comment 0 : { *(.comment) }
|
/linux-4.4.14/drivers/input/joystick/ |
D | sidewinder.c | 543 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.4.14/arch/sparc/boot/ |
D | Makefile | 18 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.4.14/arch/ia64/hp/sim/boot/ |
D | bootloader.lds | 39 .comment 0 : { *(.comment) }
|
/linux-4.4.14/arch/unicore32/mm/ |
D | Kconfig | 1 comment "Processor Type" 10 comment "Processor Features"
|
/linux-4.4.14/arch/nios2/platform/ |
D | Kconfig.platform | 3 comment "Memory settings" 16 comment "Device tree" 53 comment "Nios II instructions" 96 comment "Cache settings"
|
/linux-4.4.14/arch/x86/crypto/ |
D | salsa20-x86_64-asm_64.S | 19 # 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.4.14/arch/s390/kernel/vdso64/ |
D | vdso64.lds.S | 60 .comment 0 : { *(.comment) }
|
/linux-4.4.14/arch/s390/kernel/vdso32/ |
D | vdso32.lds.S | 60 .comment 0 : { *(.comment) }
|
/linux-4.4.14/drivers/gpu/drm/exynos/ |
D | Kconfig | 21 comment "CRTCs" 54 comment "Encoders and Bridges" 93 comment "Sub-drivers"
|
/linux-4.4.14/arch/powerpc/kernel/vdso32/ |
D | vdso32.lds.S | 79 .comment 0 : { *(.comment) }
|
/linux-4.4.14/arch/powerpc/kernel/vdso64/ |
D | vdso64.lds.S | 78 .comment 0 : { *(.comment) }
|
/linux-4.4.14/include/uapi/linux/netfilter/ |
D | xt_comment.h | 7 char comment[XT_MAX_COMMENT_LEN]; member
|
/linux-4.4.14/arch/arm/mach-shmobile/ |
D | Kconfig | 46 #comment "Renesas ARM SoCs System Type" 99 comment "Renesas ARM SoCs System Configuration"
|
/linux-4.4.14/drivers/media/mmc/ |
D | Kconfig | 1 comment "Supported MMC/SDIO adapters"
|
/linux-4.4.14/sound/pci/ice1712/ |
D | se.c | 366 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.4.14/Documentation/scsi/ |
D | ChangeLog.arcmsr | 14 ** 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…
|
D | scsi-parameters.txt | 33 See drivers/scsi/BusLogic.c, comment before function 123 See comment before function dc390_setup() in
|
/linux-4.4.14/drivers/isdn/hardware/ |
D | Kconfig | 4 comment "CAPI hardware drivers"
|
/linux-4.4.14/drivers/misc/altera-stapl/ |
D | Kconfig | 1 comment "Altera FPGA firmware download module"
|
/linux-4.4.14/drivers/net/wimax/ |
D | Kconfig | 6 comment "Enable WiMAX (Networking options) to see the WiMAX drivers"
|
/linux-4.4.14/arch/mn10300/ |
D | Kconfig | 394 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"
|
D | Makefile | 22 OBJCOPYFLAGS := -O binary -R .note -R .comment -R .GCC-command-line -R .note.gnu.build-id -S
|
/linux-4.4.14/arch/arm/mach-imx/ |
D | Kconfig | 106 comment "MX1 platforms:" 134 comment "MX21 platforms:" 147 comment "MX27 platforms:" 229 comment "MX31 platforms:" 402 comment "MX35 platforms:" 465 comment "Device tree only" 481 comment "Cortex-A platforms" 579 comment "Cortex-A/Cortex-M asymmetric multiprocessing platforms"
|
/linux-4.4.14/arch/powerpc/boot/ |
D | zImage.coff.lds.S | 47 *(.comment)
|
/linux-4.4.14/drivers/vme/boards/ |
D | Kconfig | 1 comment "VME Board Drivers"
|
/linux-4.4.14/drivers/media/ |
D | Kconfig | 16 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.4.14/drivers/vme/bridges/ |
D | Kconfig | 1 comment "VME Bridge Drivers"
|
/linux-4.4.14/drivers/media/common/ |
D | Kconfig | 5 comment "common driver options"
|
/linux-4.4.14/arch/cris/boot/ |
D | Makefile | 5 objcopyflags-$(CONFIG_ETRAX_ARCH_V10) += -R .note -R .comment
|
/linux-4.4.14/drivers/pps/generators/ |
D | Kconfig | 5 comment "PPS generators support"
|
/linux-4.4.14/arch/arm/mach-iop13xx/ |
D | Kconfig | 5 comment "IOP13XX Platform Support"
|
/linux-4.4.14/arch/arm/mach-bcm/ |
D | Kconfig | 8 comment "IPROC architected SoCs" 68 comment "KONA architected SoCs" 122 comment "Other Architectures"
|
/linux-4.4.14/drivers/hsi/controllers/ |
D | Kconfig | 4 comment "HSI controllers"
|
/linux-4.4.14/arch/arm/mach-iop33x/ |
D | Kconfig | 5 comment "IOP33x Platform Types"
|
/linux-4.4.14/arch/arm/mach-s3c24xx/ |
D | Kconfig | 25 comment "S3C24XX SoCs" 180 comment "S3C2410 Boards" 308 comment "S3C2412 Boards" 380 comment "S3C2416 Boards" 436 comment "S3C2440 Boards" 534 comment "S3C2442 Boards" 577 comment "S3C2443 Boards"
|
/linux-4.4.14/arch/h8300/boot/ |
D | Makefile | 8 OBJCOPYFLAGS_zImage := -O binary -R .note -R .comment -R .stab -R .stabstr -S
|
/linux-4.4.14/arch/xtensa/boot/boot-elf/ |
D | Makefile | 22 $(Q)$(OBJCOPY) $(OBJCOPY_ARGS) -R .comment \
|
/linux-4.4.14/arch/openrisc/ |
D | Makefile | 23 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
/linux-4.4.14/arch/mips/boot/compressed/ |
D | ld.script | 54 *(.comment)
|
D | Makefile | 48 OBJCOPYFLAGS_vmlinux.bin := $(OBJCOPYFLAGS) -O binary -R .comment -S
|
/linux-4.4.14/arch/xtensa/boot/ |
D | Makefile | 34 OBJCOPYFLAGS = --strip-all -R .comment -R .note.gnu.build-id -O binary
|
/linux-4.4.14/drivers/usb/gadget/udc/bdc/ |
D | Kconfig | 14 comment "Platform Support"
|
/linux-4.4.14/arch/arc/boot/ |
D | Makefile | 7 OBJCOPYFLAGS= -O binary -R .note -R .note.gnu.build-id -R .comment -S
|
/linux-4.4.14/arch/unicore32/ |
D | Makefile | 21 OBJCOPYFLAGS := -O binary -R .note -R .note.gnu.build-id -R .comment -S
|
D | Kconfig | 120 comment "Floating poing support"
|
/linux-4.4.14/Documentation/zh_CN/ |
D | SecurityBugs | 3 If you have any comment or update to the content, please contact the
|
D | stable_kernel_rules.txt | 3 If you have any comment or update to the content, please contact the
|
D | IRQ.txt | 3 If you have any comment or update to the content, please contact the
|
D | stable_api_nonsense.txt | 3 If you have any comment or update to the content, please contact the
|
D | basic_profiling.txt | 3 If you have any comment or update to the content, please post to LKML directly.
|
D | io_ordering.txt | 3 If you have any comment or update to the content, please contact the
|
D | sparse.txt | 3 If you have any comment or update to the content, please contact the
|
D | volatile-considered-harmful.txt | 3 If you have any comment or update to the content, please contact the
|
D | SubmittingDrivers | 3 If you have any comment or update to the content, please contact the
|
D | email-clients.txt | 3 If you have any comment or update to the content, please contact the
|
D | oops-tracing.txt | 3 If you have any comment or update to the content, please contact the
|
D | SubmittingPatches | 3 If you have any comment or update to the content, please contact the
|
D | gpio.txt | 3 If you have any comment or update to the content, please contact the
|
/linux-4.4.14/arch/blackfin/mach-bf518/ |
D | Kconfig | 11 comment "Alternative Multiplexing Scheme" 85 comment "Hysteresis/Schmitt Trigger Control" 146 comment "Interrupt Priority Assignment"
|
/linux-4.4.14/arch/blackfin/mach-bf527/ |
D | Kconfig | 11 comment "Alternative Multiplexing Scheme" 82 comment "Hysteresis/Schmitt Trigger Control" 148 comment "Interrupt Priority Assignment"
|
/linux-4.4.14/arch/microblaze/boot/ |
D | Makefile | 7 OBJCOPYFLAGS := -R .note -R .comment -R .note.gnu.build-id -O binary
|
/linux-4.4.14/arch/xtensa/boot/boot-redboot/ |
D | Makefile | 23 $(Q)$(OBJCOPY) $(OBJCOPY_ARGS) -R .comment \
|
/linux-4.4.14/arch/frv/boot/ |
D | Makefile | 20 OBJCOPYFLAGS :=-O binary -R .note -R .note.gnu.build-id -R .comment
|
/linux-4.4.14/drivers/staging/iio/trigger/ |
D | Kconfig | 4 comment "Triggers - standalone"
|
/linux-4.4.14/drivers/media/i2c/ |
D | Kconfig | 27 comment "Audio decoders, processors and mixers" 162 comment "RDS decoders" 176 comment "Video decoders" 367 comment "Video and audio decoders" 380 comment "Video encoders" 474 comment "Camera sensor devices" 630 comment "Flash devices" 666 comment "Video improvement chips" 691 comment "Audio/Video compression chips" 704 comment "Miscellaneous helper chips"
|
/linux-4.4.14/arch/sh/include/asm/ |
D | romimage-macros.h | 5 .macro LIST comment
|
/linux-4.4.14/arch/m32r/ |
D | Makefile | 11 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
/linux-4.4.14/arch/arm/mach-prima2/ |
D | Kconfig | 16 comment "CSR SiRF atlas6/primaII/Atlas7 Specific Features"
|
/linux-4.4.14/Documentation/zh_CN/arm64/ |
D | tagged-pointers.txt | 3 If you have any comment or update to the content, please contact the
|
D | legacy_instructions.txt | 3 If you have any comment or update to the content, please contact the
|
D | memory.txt | 3 If you have any comment or update to the content, please contact the
|
D | booting.txt | 3 If you have any comment or update to the content, please contact the
|
/linux-4.4.14/drivers/net/wireless/ath/wil6210/ |
D | fw.h | 102 u8 comment[32]; /* short description */ member
|
D | fw_inc.c | 196 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.4.14/arch/blackfin/mach-bf561/ |
D | Kconfig | 9 comment "Core B Support" 17 comment "Interrupt Priority Assignment"
|
/linux-4.4.14/drivers/media/dvb-frontends/ |
D | Kconfig | 4 comment "Multistandard (satellite) frontends" 46 comment "Multistandard (cable + terrestrial) frontends" 76 comment "DVB-S (satellite) frontends" 272 comment "DVB-T (terrestrial) frontends" 498 comment "DVB-C (cable) frontends" 529 comment "ATSC (North American/Korean Terrestrial/Cable DTV) frontends" 651 comment "ISDB-T (terrestrial) frontends" 678 comment "ISDB-S (satellite) & ISDB-T (terrestrial) frontends" 689 comment "Digital terrestrial only tuners/PLL" 718 comment "SEC control devices for DVB-S" [all …]
|
/linux-4.4.14/tools/power/acpi/ |
D | Makefile.config | 91 STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
|
/linux-4.4.14/scripts/kconfig/ |
D | zconf.gperf | 21 comment, T_COMMENT, TF_COMMAND
|
D | zconf.hash.c_shipped | 113 char kconf_id_strings_str32[sizeof("comment")]; 150 "comment",
|
D | zconf.y | 394 comment: T_COMMENT prompt T_EOL 401 comment_stmt: comment depends_list
|
/linux-4.4.14/drivers/net/wimax/i2400m/ |
D | Kconfig | 7 comment "Enable USB support to see WiMAX USB drivers"
|
/linux-4.4.14/arch/metag/ |
D | Makefile | 17 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
/linux-4.4.14/drivers/staging/vme/devices/ |
D | Kconfig | 1 comment "VME Device Drivers"
|
/linux-4.4.14/drivers/sh/intc/ |
D | Kconfig | 7 comment "Interrupt controller options"
|
/linux-4.4.14/drivers/usb/image/ |
D | Kconfig | 4 comment "USB Imaging devices"
|
/linux-4.4.14/drivers/hsi/clients/ |
D | Kconfig | 5 comment "HSI clients"
|
/linux-4.4.14/arch/arm/include/debug/ |
D | sa1100.S | 28 @ the comment in arch/arm/mach-sa1100/include/mach/uncompress.h.
|
/linux-4.4.14/net/irda/ |
D | Kconfig | 27 comment "IrDA protocols" 46 comment "IrDA options"
|
/linux-4.4.14/drivers/devfreq/ |
D | Kconfig | 31 comment "DEVFREQ Governors" 67 comment "DEVFREQ Drivers"
|
/linux-4.4.14/drivers/pps/clients/ |
D | Kconfig | 7 comment "PPS clients support"
|
/linux-4.4.14/include/linux/ |
D | amigaffs.h | 88 u8 comment[92]; member
|
/linux-4.4.14/arch/arm/mach-omap2/ |
D | Kconfig | 141 comment "OMAP Core Type" 180 comment "OMAP Legacy Platform Data Board Type"
|
/linux-4.4.14/drivers/usb/musb/ |
D | Kconfig | 63 comment "Platform Glue Layer" 127 comment "MUSB DMA mode"
|
/linux-4.4.14/arch/arm/mach-iop32x/ |
D | Kconfig | 5 comment "IOP32x Platform Types"
|
/linux-4.4.14/Documentation/zh_CN/arm/ |
D | Booting | 3 If you have any comment or update to the content, please contact the
|
D | kernel_user_helpers.txt | 3 If you have any comment or update to the content, please contact the
|
/linux-4.4.14/Documentation/ja_JP/ |
D | stable_kernel_rules.txt | 10 comment or update of this file, please try to update Original(English)
|
/linux-4.4.14/arch/microblaze/ |
D | Kconfig.platform | 29 comment "Definitions for MICROBLAZE0"
|
D | Kconfig | 89 comment "Boot options" 147 comment "Default settings for advanced configuration options are used"
|
/linux-4.4.14/arch/blackfin/mach-bf533/ |
D | Kconfig | 7 comment "Interrupt Priority Assignment"
|
/linux-4.4.14/drivers/memstick/core/ |
D | Kconfig | 5 comment "MemoryStick drivers"
|
/linux-4.4.14/arch/arm/mach-omap1/ |
D | Kconfig | 5 comment "OMAP Core Type" 34 comment "OMAP Board Type"
|
/linux-4.4.14/Documentation/kbuild/ |
D | kconfig-language.txt | 240 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.4.14/arch/parisc/ |
D | Makefile | 45 OBJCOPY_FLAGS =-O binary -R .note -R .comment -S
|
/linux-4.4.14/drivers/pnp/ |
D | Kconfig | 39 comment "Protocols"
|
/linux-4.4.14/arch/cris/ |
D | Makefile | 49 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
/linux-4.4.14/arch/arm64/ |
D | Makefile | 15 OBJCOPYFLAGS :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
|
/linux-4.4.14/arch/blackfin/mach-bf537/ |
D | Kconfig | 7 comment "Interrupt Priority Assignment"
|
/linux-4.4.14/arch/mips/boot/ |
D | Makefile | 21 drop-sections := .reginfo .mdebug .comment .note .pdr .options .MIPS.options
|
/linux-4.4.14/arch/s390/boot/compressed/ |
D | Makefile | 41 OBJCOPYFLAGS_vmlinux.bin := -R .comment -S
|
/linux-4.4.14/drivers/net/caif/ |
D | Kconfig | 5 comment "CAIF transport drivers"
|
/linux-4.4.14/drivers/usb/class/ |
D | Kconfig | 4 comment "USB Device Class drivers"
|
/linux-4.4.14/arch/nios2/ |
D | Kconfig | 97 comment "Boot options" 154 comment "Default settings for advanced configuration options are used"
|
/linux-4.4.14/Documentation/vm/ |
D | remap_file_pages.txt | 26 vm.max_map_count limit more easily due to additional VMAs. See comment for
|
/linux-4.4.14/sound/soc/fsl/ |
D | Kconfig | 3 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.4.14/arch/mips/txx9/ |
D | Kconfig | 108 comment "Multiplex Pin Select"
|
/linux-4.4.14/drivers/media/i2c/soc_camera/ |
D | Kconfig | 1 comment "soc_camera sensor drivers"
|
/linux-4.4.14/arch/ia64/kernel/ |
D | vmlinux.lds.S | 29 *(.comment)
|
/linux-4.4.14/net/netfilter/ipvs/ |
D | Kconfig | 75 comment "IPVS transport protocol load balancing support" 111 comment "IPVS scheduler" 254 comment 'IPVS SH scheduler' 269 comment 'IPVS application helper'
|
/linux-4.4.14/drivers/memstick/host/ |
D | Kconfig | 5 comment "MemoryStick Host Controller Drivers"
|
/linux-4.4.14/arch/blackfin/mach-bf538/ |
D | Kconfig | 7 comment "Interrupt Priority Assignment"
|
/linux-4.4.14/drivers/media/pci/ivtv/ |
D | ivtv-cards.h | 271 char *comment; member
|
/linux-4.4.14/arch/blackfin/ |
D | Kconfig | 78 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"
|
D | Makefile | 13 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
/linux-4.4.14/arch/m68k/ |
D | Kconfig.machine | 1 comment "Machine Types" 306 comment "Machine Options" 324 comment "RAM configuration" 387 comment "ROM configuration"
|
D | Kconfig.bus | 3 comment "Bus Support"
|
/linux-4.4.14/drivers/isdn/hisax/ |
D | Kconfig | 21 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.4.14/drivers/isdn/hardware/mISDN/ |
D | Kconfig | 4 comment "mISDN hardware drivers"
|
/linux-4.4.14/arch/x86/boot/compressed/ |
D | Makefile | 60 OBJCOPYFLAGS_vmlinux.bin := -R .comment -S
|
/linux-4.4.14/arch/arm/mach-exynos/ |
D | Kconfig | 65 comment "EXYNOS SoCs"
|
/linux-4.4.14/drivers/s390/char/ |
D | Kconfig | 1 comment "S/390 character device drivers" 142 comment "S/390 tape hardware support"
|
/linux-4.4.14/drivers/mmc/card/ |
D | Kconfig | 5 comment "MMC/SD/SDIO Card Drivers"
|
/linux-4.4.14/drivers/block/drbd/ |
D | Kconfig | 5 comment "DRBD disabled because PROC_FS or INET not selected"
|
/linux-4.4.14/arch/arm/plat-samsung/ |
D | Kconfig | 28 comment "Boot options" 236 comment "Power management"
|
/linux-4.4.14/drivers/input/ |
D | Kconfig | 93 comment "Userland interfaces" 190 comment "Input Device Drivers"
|
/linux-4.4.14/drivers/s390/block/ |
D | Kconfig | 1 comment "S/390 block device drivers"
|
/linux-4.4.14/arch/arm/mach-davinci/ |
D | Kconfig | 16 comment "DaVinci Core Type" 55 comment "DaVinci Board Type"
|
/linux-4.4.14/include/asm-generic/ |
D | vmlinux.lds.h | 615 .comment 0 : { *(.comment) }
|
/linux-4.4.14/net/ipv4/netfilter/ |
D | ip_tables.c | 222 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 266 comment = comments[NF_IP_TRACE_COMMENT_RULE]; in trace_packet() 270 &chainname, &comment, &rulenum) != 0) in trace_packet() 275 tablename, chainname, comment, rulenum); in trace_packet()
|
/linux-4.4.14/net/ipv6/netfilter/ |
D | ip6_tables.c | 251 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 295 comment = comments[NF_IP6_TRACE_COMMENT_RULE]; in trace_packet() 299 &chainname, &comment, &rulenum) != 0) in trace_packet() 304 tablename, chainname, comment, rulenum); in trace_packet()
|
/linux-4.4.14/arch/hexagon/ |
D | Kconfig | 2 comment "Linux Kernel Configuration for Hexagon"
|
/linux-4.4.14/Documentation/zh_CN/video4linux/ |
D | omap3isp.txt | 3 If you have any comment or update to the content, please contact the
|
/linux-4.4.14/drivers/scsi/arm/ |
D | Kconfig | 66 comment "The following drivers are not fully supported"
|
/linux-4.4.14/drivers/usb/dwc3/ |
D | Kconfig | 50 comment "Platform Glue Driver Support"
|
/linux-4.4.14/tools/build/ |
D | Build.include | 46 # Replace >#< with >\#< to avoid starting a comment in the .cmd file
|
/linux-4.4.14/drivers/hid/usbhid/ |
D | Kconfig | 24 comment "Input core support is needed for USB HID input layer or HIDBP support"
|
/linux-4.4.14/drivers/usb/storage/ |
D | Kconfig | 5 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.4.14/arch/arm/mach-ixp4xx/ |
D | Kconfig | 5 comment "IXP4xx Platforms" 197 comment "IXP4xx Options"
|
/linux-4.4.14/security/tomoyo/ |
D | common.c | 688 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.4.14/drivers/ata/ |
D | Kconfig | 83 comment "Controllers with non-SFF native interface" 238 comment "SFF controllers with custom DMA interface" 285 comment "SATA SFF controllers with BMDMA" 416 comment "PATA SFF controllers with BMDMA" 843 comment "PIO-only SFF controllers" 996 comment "Generic fallback / legacy drivers"
|
/linux-4.4.14/drivers/ptp/ |
D | Kconfig | 56 comment "Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks."
|
/linux-4.4.14/drivers/usb/dwc2/ |
D | Kconfig | 32 comment "Gadget/Dual-role mode requires USB Gadget support to be enabled"
|
/linux-4.4.14/firmware/ |
D | WHENCE | 46 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.4.14/drivers/leds/trigger/ |
D | Kconfig | 92 comment "iptables trigger is under Netfilter config (LED target)"
|
/linux-4.4.14/arch/powerpc/boot/dts/fsl/ |
D | p1020utm-pc.dtsi | 134 when there isn't any. So, just comment it out.
|
D | p1020mbg-pc.dtsi | 145 when there isn't any. So, just comment it out.
|
D | p1020rdb-pc.dtsi | 199 when there isn't any. So, just comment it out.
|
/linux-4.4.14/arch/arm/mach-ep93xx/ |
D | Kconfig | 16 comment "EP93xx Platforms"
|
/linux-4.4.14/arch/arm/mach-pxa/ |
D | Kconfig | 5 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.4.14/net/mac80211/ |
D | Kconfig | 14 comment "CFG80211 needs to be enabled for MAC80211" 70 comment "Some wireless drivers require a rate control algorithm"
|
/linux-4.4.14/crypto/ |
D | Kconfig | 22 comment "Crypto core or helper" 230 comment "Authenticated Encryption with Associated Data" 282 comment "Block modes" 358 comment "Hash modes" 400 comment "Digest" 790 comment "Ciphers" 1494 comment "Compression" 1548 comment "Random Number Generation"
|
/linux-4.4.14/arch/x86/boot/ |
D | Makefile | 74 OBJCOPYFLAGS_vmlinux.bin := -O binary -R .note -R .comment -S
|
/linux-4.4.14/drivers/media/pci/bt8xx/ |
D | bttvp.h | 315 extern void bttv_gpio_tracking(struct bttv *btv, char *comment);
|
/linux-4.4.14/arch/sh/ |
D | Makefile | 80 OBJCOPYFLAGS := -O binary -R .note -R .note.gnu.build-id -R .comment \
|
/linux-4.4.14/drivers/extcon/ |
D | Kconfig | 15 comment "Extcon Device Drivers"
|
/linux-4.4.14/drivers/net/irda/ |
D | Kconfig | 4 comment "SIR device drivers" 75 comment "Dongle support" 241 comment "FIR device drivers"
|
/linux-4.4.14/sound/oss/ |
D | Kconfig | 28 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.4.14/drivers/usb/core/ |
D | Kconfig | 17 comment "Miscellaneous USB options"
|
/linux-4.4.14/Documentation/zh_CN/filesystems/ |
D | sysfs.txt | 3 If you have any comment or update to the content, please contact the
|
/linux-4.4.14/arch/powerpc/platforms/8xx/ |
D | Kconfig | 99 comment "Generic MPC8xx Options"
|
/linux-4.4.14/arch/arm/nwfpe/ |
D | ChangeLog | 61 comment in the code beside init_flag state the kernel guarantees
|
/linux-4.4.14/drivers/usb/ |
D | Kconfig | 109 comment "USB port drivers"
|
/linux-4.4.14/arch/arm/plat-omap/ |
D | Kconfig | 11 comment "OMAP Feature Selections"
|
/linux-4.4.14/drivers/ide/ |
D | Kconfig | 32 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.4.14/drivers/net/wireless/iwlwifi/ |
D | Kconfig | 76 comment "WARNING: iwlwifi is useless without IWLDVM or IWLMVM"
|
/linux-4.4.14/arch/blackfin/mach-bf548/ |
D | Kconfig | 104 comment "Interrupt Priority Assignment"
|
/linux-4.4.14/drivers/isdn/i4l/ |
D | Kconfig | 122 comment "ISDN4Linux hardware drivers"
|
/linux-4.4.14/Documentation/video4linux/ |
D | pxa_camera.txt | 72 - an arrow with a comment is a mandatory transition (no condition)
|