Home
last modified time | relevance | path

Searched +full:foo +full:- +full:supply (Results 1 – 10 of 10) sorted by relevance

/linux-3.3/arch/x86/include/asm/
Duser_32.h7 linux we use the 'trad-core' bfd). There are quite a number of
19 DATA: The data area is stored. We use current->end_text to
20 current->brk to pick up all of the user variables, plus any memory
22 is demand-zero or if a page is totally unused, we just cover the entire
27 current->start_stack, so we round each of these off in order to be able
37 * interacting with the FXSR-format floating point environment. Floating
50 long foo; member
52 long st_space[20]; /* 8*10 bytes for each FP-reg = 80 bytes */
62 long foo; member
66 long st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
[all …]
/linux-3.3/Documentation/kbuild/
Dmodules.txt3 This document describes how to build an out-of-tree kernel module.
9 --- 2.1 Command Syntax
10 --- 2.2 Options
11 --- 2.3 Targets
12 --- 2.4 Building Separate Files
14 --- 3.1 Shared Makefile
15 --- 3.2 Separate Kbuild file and Makefile
16 --- 3.3 Binary Blobs
17 --- 3.4 Building Multiple Modules
19 --- 4.1 Kernel Includes
[all …]
/linux-3.3/Documentation/video4linux/
Dv4l2-controls.txt25 for V4L2 drivers and struct v4l2_subdev for sub-device drivers.
41 Basic usage for V4L2 and sub-device drivers
46 1.1) Add the handler to your driver's top-level struct:
54 struct foo_dev *foo;
58 v4l2_ctrl_handler_init(&foo->ctrl_handler, nr_of_controls);
76 foo->v4l2_dev.ctrl_handler = &foo->ctrl_handler;
78 Where foo->v4l2_dev is of type struct v4l2_device.
85 1.3.2) For sub-device drivers do this:
95 foo->sd.ctrl_handler = &foo->ctrl_handler;
97 Where foo->sd is of type struct v4l2_subdev.
[all …]
/linux-3.3/Documentation/
Dpinctrl.txt6 - Enumerating and naming controllable pins
8 - Multiplexing of pins, pads, fingers (etc) see below for details
10 - Configuration of pins, pads, fingers (etc), such as software-controlled
11 biasing and driving mode specific pins, such as pull-up/down, open drain,
14 Top-level interface
19 - A pin controller is a piece of hardware, usually a set of registers, that
25 - PINS are equal to pads, fingers, balls or whatever packaging input or
29 be sparse - i.e. there may be gaps in the space with numbers where no
72 .name = "foo",
85 pr_err("could not register foo pin driver\n");
[all …]
DCodingStyle28 Now, some people will claim that having 8-character indentations makes
30 80-character terminal screen. The answer to that is that if you need
34 In short, 8-char indents make things easier to read, and have the added
40 instead of "double-indenting" the "case" labels. E.g.:
87 with a long argument list. However, never break user-visible strings such as
103 This applies to all non-function statement blocks (if, switch, for,
126 is ... well ... inconsistent, but all right-thinking people know that
132 ie a "while" in a do-statement or an "else" in an if-statement, like
136 body of do-loop
151 Also, note that this brace-placement also minimizes the number of empty
[all …]
/linux-3.3/Documentation/security/
Dcredentials.txt17 - Immutable credentials.
18 - Accessing task credentials.
19 - Accessing another task's credentials.
20 - Altering credentials.
21 - Managing credentials.
40 - Tasks
41 - Files/inodes
42 - Sockets
43 - Message queues
44 - Shared memory segments
[all …]
/linux-3.3/drivers/staging/cxt1e1/
Dpmcc4_drv.c1 /*-----------------------------------------------------------------------------
2 * pmcc4_drv.c -
5 * Copyright (C) 2002-2006 SBE, Inc.
19 *-----------------------------------------------------------------------------
81 ci_t *CI; /* dummy pointer to board ZEROE's data -
89 * The code within the following -if- clause is a backdoor debug facility in sbecom_set_loglevel()
94 unsigned int channum = d - (LOG_DEBUG + 1); /* convert to ZERO in sbecom_set_loglevel()
118 for (ci = c4_list; ci; ci = ci->next) in c4_find_chan()
119 for (portnum = 0; portnum < ci->max_port; portnum++) in c4_find_chan()
122 if ((ch = ci->port[portnum].chan[gchan])) in c4_find_chan()
[all …]
/linux-3.3/Documentation/networking/
Dbonding.txt7 Corrections, HA extensions : 2000/10/03-15 :
8 - Willy Tarreau <willy at meta-x.org>
9 - Constantine Gavrilov <const-g at xpert.com>
10 - Chad N. Tindel <ctindel at ieee dot org>
11 - Janice Girouard <girouard at us dot ibm dot com>
12 - Jay Vosburgh <fubar at us dot ibm dot com>
16 - Mitch Williams <mitch.a.williams at intel.com>
29 the original tools from extreme-linux and beowulf sites will not work
114 -----------------------------------------------
131 -------------------------------------
[all …]
/linux-3.3/drivers/staging/wlags49_h2/
Dhcf.c20 * DESCRIPTION : HCF Routines for Hermes-II (callable via the Wireless Connection I/F or WCI)
35 * COPYRIGHT © 1994 - 1995 by AT&T. All Rights Reserved
36 * COPYRIGHT © 1996 - 2000 by Lucent Technologies. All Rights Reserved
37 * COPYRIGHT © 2001 - 2004 by Agere Systems Inc. All Rights Reserved
79 …* - a leading marker of //! is used. The purpose of such a sequence is to help to understand the f…
84 …* - using near pointers in a model where ss!=ds is an invitation for disaster, so be aware of how …
86 …* - remember that sign extension on 32 bit platforms may cause problems unless code is carefully c…
87 * e.g. use "(hcf_16)~foo" rather than "~foo"
97 #define offsetof(s,m) ((unsigned int)&(((s *)0)->m))
165 while ( n-- ) { in IN_PORT_STRING_32()
[all …]
/linux-3.3/kernel/
Dmodule.c17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
85 (PFN_DOWN((unsigned long)(BASE) + (SIZE) - 1) - \
90 #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
116 static unsigned long module_addr_min = -1UL, module_addr_max = 0;
147 if (mod && mod->state == MODULE_STATE_COMING) in strong_try_module_get()
148 return -EBUSY; in strong_try_module_get()
152 return -ENOENT; in strong_try_module_get()
158 mod->taints |= (1U << flag); in add_taint_module()
177 for (i = 1; i < info->hdr->e_shnum; i++) { in find_sec()
178 Elf_Shdr *shdr = &info->sechdrs[i]; in find_sec()
[all …]