/linux-4.4.14/drivers/media/usb/go7007/ |
D | go7007-driver.c | 41 int go7007_read_interrupt(struct go7007 *go, u16 *value, u16 *data) in go7007_read_interrupt() argument 43 go->interrupt_available = 0; in go7007_read_interrupt() 44 go->hpi_ops->read_interrupt(go); in go7007_read_interrupt() 45 if (wait_event_timeout(go->interrupt_waitq, in go7007_read_interrupt() 46 go->interrupt_available, 5*HZ) < 0) { in go7007_read_interrupt() 47 v4l2_err(&go->v4l2_dev, "timeout waiting for read interrupt\n"); in go7007_read_interrupt() 50 if (!go->interrupt_available) in go7007_read_interrupt() 52 go->interrupt_available = 0; in go7007_read_interrupt() 53 *value = go->interrupt_value & 0xfffe; in go7007_read_interrupt() 54 *data = go->interrupt_data; in go7007_read_interrupt() [all …]
|
D | go7007-v4l2.c | 88 static void get_resolution(struct go7007 *go, int *width, int *height) in get_resolution() argument 90 switch (go->standard) { in get_resolution() 101 *width = go->board_info->sensor_width; in get_resolution() 102 *height = go->board_info->sensor_height; in get_resolution() 107 static void set_formatting(struct go7007 *go) in set_formatting() argument 109 if (go->format == V4L2_PIX_FMT_MJPEG) { in set_formatting() 110 go->pali = 0; in set_formatting() 111 go->aspect_ratio = GO7007_RATIO_1_1; in set_formatting() 112 go->gop_size = 0; in set_formatting() 113 go->ipb = 0; in set_formatting() [all …]
|
D | go7007-fw.c | 298 static int mjpeg_frame_header(struct go7007 *go, unsigned char *buf, int q) in mjpeg_frame_header() argument 318 buf[p++] = go->height >> 8; in mjpeg_frame_header() 319 buf[p++] = go->height & 0xff; in mjpeg_frame_header() 320 buf[p++] = go->width >> 8; in mjpeg_frame_header() 321 buf[p++] = go->width & 0xff; in mjpeg_frame_header() 373 static int gen_mjpeghdr_to_package(struct go7007 *go, __le16 *code, int space) in gen_mjpeghdr_to_package() argument 385 mjpeg_frame_header(go, buf + size, i); in gen_mjpeghdr_to_package() 388 chunk = mjpeg_frame_header(go, buf + size, 1); in gen_mjpeghdr_to_package() 424 static int mpeg1_frame_header(struct go7007 *go, unsigned char *buf, in mpeg1_frame_header() argument 428 int rows = go->interlace_coding ? go->height / 32 : go->height / 16; in mpeg1_frame_header() [all …]
|
D | go7007-usb.c | 630 static int go7007_usb_vendor_request(struct go7007 *go, int request, in go7007_usb_vendor_request() argument 633 struct go7007_usb *usb = go->hpi_context; in go7007_usb_vendor_request() 649 static int go7007_usb_interface_reset(struct go7007 *go) in go7007_usb_interface_reset() argument 651 struct go7007_usb *usb = go->hpi_context; in go7007_usb_interface_reset() 654 if (go->status == STATUS_SHUTDOWN) in go7007_usb_interface_reset() 657 if (go7007_write_interrupt(go, 0x0001, 0x0001) < 0) in go7007_usb_interface_reset() 664 if (go7007_usb_vendor_request(go, 0x10, 0, 0, NULL, 0, 0) < 0 || in go7007_usb_interface_reset() 665 go7007_usb_vendor_request(go, 0x10, 0, 0, NULL, 0, 0) < 0) in go7007_usb_interface_reset() 669 if (go7007_write_interrupt(go, 0x0001, 0x0001) < 0) in go7007_usb_interface_reset() 675 if (go7007_read_interrupt(go, &intr_val, &intr_data) < 0 || in go7007_usb_interface_reset() [all …]
|
D | go7007-i2c.c | 46 static int go7007_i2c_xfer(struct go7007 *go, u16 addr, int read, in go7007_i2c_xfer() argument 52 if (go->status == STATUS_SHUTDOWN) in go7007_i2c_xfer() 57 dev_dbg(go->dev, "go7007-i2c: reading 0x%02x on 0x%02x\n", in go7007_i2c_xfer() 60 dev_dbg(go->dev, in go7007_i2c_xfer() 65 mutex_lock(&go->hw_lock); in go7007_i2c_xfer() 67 if (go->board_id == GO7007_BOARDID_ADLINK_MPG24) { in go7007_i2c_xfer() 70 go7007_write_addr(go, 0x3c82, 0x0020); in go7007_i2c_xfer() 75 if (go7007_read_addr(go, STATUS_REG_ADDR, &val) < 0) in go7007_i2c_xfer() 82 dev_err(go->dev, "go7007-i2c: I2C adapter is hung\n"); in go7007_i2c_xfer() 87 go7007_write_addr(go, I2C_CTRL_REG_ADDR, flags); in go7007_i2c_xfer() [all …]
|
D | go7007-priv.h | 124 int (*interface_reset)(struct go7007 *go); 125 int (*write_interrupt)(struct go7007 *go, int addr, int data); 126 int (*read_interrupt)(struct go7007 *go); 127 int (*stream_start)(struct go7007 *go); 128 int (*stream_stop)(struct go7007 *go); 129 int (*send_firmware)(struct go7007 *go, u8 *data, int len); 130 int (*send_command)(struct go7007 *go, unsigned int cmd, void *arg); 131 void (*release)(struct go7007 *go); 245 void (*audio_deliver)(struct go7007 *go, u8 *buf, int length); 267 #define go7007_interface_reset(go) \ argument [all …]
|
D | snd-go7007.c | 73 static void parse_audio_stream_data(struct go7007 *go, u8 *buf, int length) in parse_audio_stream_data() argument 75 struct go7007_snd *gosnd = go->snd_context; in parse_audio_stream_data() 109 struct go7007 *go = snd_pcm_substream_chip(substream); in go7007_snd_hw_params() local 120 go->audio_deliver = parse_audio_stream_data; in go7007_snd_hw_params() 126 struct go7007 *go = snd_pcm_substream_chip(substream); in go7007_snd_hw_free() local 128 go->audio_deliver = NULL; in go7007_snd_hw_free() 137 struct go7007 *go = snd_pcm_substream_chip(substream); in go7007_snd_capture_open() local 138 struct go7007_snd *gosnd = go->snd_context; in go7007_snd_capture_open() 155 struct go7007 *go = snd_pcm_substream_chip(substream); in go7007_snd_capture_close() local 156 struct go7007_snd *gosnd = go->snd_context; in go7007_snd_capture_close() [all …]
|
D | s2250-board.c | 139 static int go7007_usb_vendor_request(struct go7007 *go, u16 request, in go7007_usb_vendor_request() argument 142 struct go7007_usb *usb = go->hpi_context; in go7007_usb_vendor_request() 161 struct go7007 *go = i2c_get_adapdata(client->adapter); in write_reg() local 167 if (go == NULL) in write_reg() 170 if (go->status == STATUS_SHUTDOWN) in write_reg() 177 usb = go->hpi_context; in write_reg() 183 rc = go7007_usb_vendor_request(go, 0x55, dev_addr, in write_reg() 195 struct go7007 *go = i2c_get_adapdata(client->adapter); in write_reg_fp() local 201 if (go == NULL) in write_reg_fp() 204 if (go->status == STATUS_SHUTDOWN) in write_reg_fp() [all …]
|
/linux-4.4.14/drivers/media/pci/saa7134/ |
D | saa7134-go7007.c | 144 static int saa7134_go7007_interface_reset(struct go7007 *go) in saa7134_go7007_interface_reset() argument 146 struct saa7134_go7007 *saa = go->hpi_context; in saa7134_go7007_interface_reset() 180 if (go7007_read_interrupt(go, &intr_val, &intr_data) < 0 || in saa7134_go7007_interface_reset() 188 static int saa7134_go7007_write_interrupt(struct go7007 *go, int addr, int data) in saa7134_go7007_write_interrupt() argument 190 struct saa7134_go7007 *saa = go->hpi_context; in saa7134_go7007_write_interrupt() 216 static int saa7134_go7007_read_interrupt(struct go7007 *go) in saa7134_go7007_read_interrupt() argument 218 struct saa7134_go7007 *saa = go->hpi_context; in saa7134_go7007_read_interrupt() 222 go->interrupt_available = 1; in saa7134_go7007_read_interrupt() 223 gpio_read(dev, HPI_ADDR_INTR_RET_VALUE, &go->interrupt_value); in saa7134_go7007_read_interrupt() 224 gpio_read(dev, HPI_ADDR_INTR_RET_DATA, &go->interrupt_data); in saa7134_go7007_read_interrupt() [all …]
|
/linux-4.4.14/drivers/video/console/ |
D | newport_con.c | 58 (regs)->go.zpattern = BMASK((cp)[0x0]); (regs)->go.zpattern = BMASK((cp)[0x1]); \ 59 (regs)->go.zpattern = BMASK((cp)[0x2]); (regs)->go.zpattern = BMASK((cp)[0x3]); \ 60 (regs)->go.zpattern = BMASK((cp)[0x4]); (regs)->go.zpattern = BMASK((cp)[0x5]); \ 61 (regs)->go.zpattern = BMASK((cp)[0x6]); (regs)->go.zpattern = BMASK((cp)[0x7]); \ 62 (regs)->go.zpattern = BMASK((cp)[0x8]); (regs)->go.zpattern = BMASK((cp)[0x9]); \ 63 (regs)->go.zpattern = BMASK((cp)[0xa]); (regs)->go.zpattern = BMASK((cp)[0xb]); \ 64 (regs)->go.zpattern = BMASK((cp)[0xc]); (regs)->go.zpattern = BMASK((cp)[0xd]); \ 65 (regs)->go.zpattern = BMASK((cp)[0xe]); (regs)->go.zpattern = BMASK((cp)[0xf]); \ 82 npregs->go.xyendi = in newport_render_background() 128 npregs->go.hostrw0 = *data++ << 24; in newport_show_logo() [all …]
|
/linux-4.4.14/drivers/s390/char/ |
D | sclp_rw.c | 94 struct go *go; in sclp_initialize_mto() local 117 go = &mdb->go; in sclp_initialize_mto() 118 go->length = sizeof(struct go); in sclp_initialize_mto() 119 go->type = 1; in sclp_initialize_mto() 223 buffer->current_msg->mdb.go.general_msg_flags |= in sclp_write()
|
D | sclp_rw.h | 23 struct go { struct 47 struct go go; argument
|
/linux-4.4.14/drivers/clk/rockchip/ |
D | clk.h | 241 df, go, gs, gf) \ argument 256 .gate_offset = go, \ 262 go, gs, gf) \ argument 274 .gate_offset = go, \ 280 df, dt, go, gs, gf) \ argument 293 .gate_offset = go, \ 299 go, gs, gf) \ argument 311 .gate_offset = go, \ 355 #define COMPOSITE_FRAC(_id, cname, pname, f, mo, df, go, gs, gf)\ argument 367 .gate_offset = go, \
|
/linux-4.4.14/drivers/net/ethernet/intel/ |
D | Kconfig | 49 adapters. For more information on how to identify your adapter, go 54 For general information and support, go to the Intel support 74 identify your adapter, go to the Adapter & Driver ID Guide at: 78 For general information and support, go to the Intel support 94 adapters. For more information on how to identify your adapter, go 99 For general information and support, go to the Intel support 135 information on how to identify your adapter, go to the Adapter & 140 For general information and support, go to the Intel support 157 instead. For more information on how to identify your adapter, go 162 For general information and support, go to the Intel support [all …]
|
/linux-4.4.14/arch/ia64/kernel/ |
D | smpboot.c | 104 static volatile unsigned long go[SLAVE + 1]; variable 196 go[MASTER] = 0; in sync_master() 201 while (!go[MASTER]) in sync_master() 203 go[MASTER] = 0; in sync_master() 204 go[SLAVE] = ia64_get_itc(); in sync_master() 224 go[MASTER] = 1; in get_delta() 225 while (!(tm = go[SLAVE])) in get_delta() 227 go[SLAVE] = 0; in get_delta() 298 go[MASTER] = 1; in ia64_sync_itc() 305 while (go[MASTER]) in ia64_sync_itc()
|
/linux-4.4.14/tools/perf/tests/ |
D | mmap-thread-lookup.c | 52 int go; in thread_fn() local 58 ret = write(td->ready[1], &go, sizeof(int)); in thread_fn() 76 int err, go; in thread_create() local 84 ssize_t ret = read(td->ready[0], &go, sizeof(int)); in thread_create()
|
/linux-4.4.14/Documentation/power/ |
D | tricks.txt | 7 * go with minimal config, turn off drivers like USB, AGP you don't 12 * use ext2. At least it has working fsck. [If something seems to go 20 * try running as few processes as possible, preferably go to single
|
/linux-4.4.14/kernel/power/ |
D | swap.c | 564 wait_queue_head_t go; /* start crc update */ member 580 wait_event(d->go, atomic_read(&d->ready) || in crc32_threadfn() 606 wait_queue_head_t go; /* start compression */ member 623 wait_event(d->go, atomic_read(&d->ready) || in lzo_compress_threadfn() 689 memset(&data[thr], 0, offsetof(struct cmp_data, go)); in save_image_lzo() 697 memset(crc, 0, offsetof(struct crc_data, go)); in save_image_lzo() 703 init_waitqueue_head(&data[thr].go); in save_image_lzo() 721 init_waitqueue_head(&crc->go); in save_image_lzo() 780 wake_up(&data[thr].go); in save_image_lzo() 788 wake_up(&crc->go); in save_image_lzo() [all …]
|
/linux-4.4.14/Documentation/networking/ |
D | i40evf.txt | 25 For more information on how to identify your adapter, go to the Adapter & 28 http://support.intel.com/support/go/network/adapter/idguide.htm 37 For general information, go to the Intel support website at:
|
D | ixgbevf.txt | 30 For more information on how to identify your adapter, go to the Adapter & 33 http://support.intel.com/support/go/network/adapter/idguide.htm 42 For general information, go to the Intel support website at:
|
D | igbvf.txt | 44 For more information on how to identify your adapter, go to the Adapter & 47 http://support.intel.com/support/go/network/adapter/idguide.htm 70 For general information, go to the Intel support website at:
|
D | igb.txt | 20 For specific information on how to identify your adapter, go to the Adapter & 23 http://support.intel.com/support/go/network/adapter/idguide.htm 119 For general information, go to the Intel support website at:
|
D | i40e.txt | 23 For more information on how to identify your adapter, go to the Adapter & 107 For general information, go to the Intel support website at:
|
D | operstates.txt | 130 via RTM_SETLINK instructs the kernel that an interface should go to 145 -do 802.1X, eventually abort if flags go down again 157 waiting for operstate to go IF_OPER_UP/IF_OPER_UNKNOWN before
|
D | README.sb1000 | 44 isapnp, pnpdump, or /etc/isapnp.conf, go to: 122 12.) If you still have problems, go to the support web sites mentioned above 129 1.) Packets go out on the ppp0 interface but don't come back on the cm0 156 rerun isapnp and go from there.
|
D | e1000e.txt | 25 For more information on how to identify your adapter, go to the Adapter & 28 http://support.intel.com/support/go/network/adapter/idguide.htm 34 http://support.intel.com/support/go/network/adapter/home.htm 302 For general information, go to the Intel support website at:
|
D | fore200e.txt | 40 https://en.wikipedia.org/wiki/FORE_Systems. Register TACTics Online and go to
|
D | e100.txt | 39 For more information on how to identify your adapter, go to the Adapter & 173 For general information, go to the Intel support website at:
|
D | e1000.txt | 19 For more information on how to identify your adapter, go to the Adapter & 22 http://support.intel.com/support/go/network/adapter/idguide.htm 28 http://support.intel.com/support/go/network/adapter/home.htm 451 For general information, go to the Intel support website at:
|
D | netdev-FAQ.txt | 145 Before you jump to go do the above, do note that the normal stable rules 223 Finally, go back and read Documentation/SubmittingPatches to be
|
D | openvswitch.txt | 59 that the kernel considers part of the flow must go to userspace, 65 the following sections go into detail.
|
D | ixgbe.txt | 23 For more information on how to identify your adapter, go to the Adapter & 339 For general information, go to the Intel support website at:
|
/linux-4.4.14/arch/sparc/kernel/ |
D | smp_64.c | 160 static unsigned long go[SLAVE + 1]; variable 172 go[MASTER] = 1; in get_delta() 174 while (!(tm = go[SLAVE])) in get_delta() 176 go[SLAVE] = 0; in get_delta() 207 go[MASTER] = 1; in smp_synchronize_tick_client() 209 while (go[MASTER]) in smp_synchronize_tick_client() 255 go[MASTER] = 0; in smp_synchronize_one_tick() 260 while (!go[MASTER]) in smp_synchronize_one_tick() 264 go[MASTER] = 0; in smp_synchronize_one_tick() 270 while (!go[MASTER]) in smp_synchronize_one_tick() [all …]
|
D | wof.S | 116 restore %g0, %g0, %g0 ! go back into trap window
|
/linux-4.4.14/arch/arm/mach-mvebu/ |
D | pmsu_ll.S | 32 ARM_BE8(setend be ) @ go BE8 if entered LE 48 ARM_BE8(setend be ) @ go BE8 if entered LE
|
D | headsmp.S | 32 ARM_BE8(setend be ) @ go BE8 if entered LE
|
/linux-4.4.14/sound/oss/ |
D | dmabuf.c | 316 adev->go = 1; in DMAbuf_open() 403 if (!((adev->enable_bits * adev->go) & PCM_ENABLE_OUTPUT)) in DMAbuf_launch_output() 422 adev->d->trigger(dev,adev->enable_bits * adev->go); in DMAbuf_launch_output() 434 if (!adev->go && !(adev->enable_bits & PCM_ENABLE_OUTPUT)) in DMAbuf_sync() 549 adev->d->trigger(dev, adev->enable_bits * adev->go); in DMAbuf_activate_recording() 572 if (!(adev->enable_bits & PCM_ENABLE_INPUT) || !adev->go) { in DMAbuf_getrdbuffer() 586 if (adev->go) in DMAbuf_getrdbuffer() 701 if (adev->go) in DMAbuf_start_devices() 704 adev->go = 1; in DMAbuf_start_devices() 706 adev->d->trigger(dev,adev->enable_bits * adev->go); in DMAbuf_start_devices() [all …]
|
D | audio.c | 835 if (changed && audio_devs[dev]->go) in dma_ioctl() 856 audio_devs[dev]->go) in dma_ioctl() 870 audio_devs[dev]->d->trigger(dev, bits * audio_devs[dev]->go); in dma_ioctl() 882 audio_devs[dev]->go = 0; in dma_ioctl()
|
D | dev_table.h | 217 int go; member
|
/linux-4.4.14/arch/m68k/fpsp040/ |
D | sacos.S | 23 | 1. If |X| >= 1, go to 3. 30 | 3. If |X| > 1, go to 5.
|
D | stwotox.S | 25 | 1. If |X| > 16480, go to ExpBig. 27 | 2. If |X| < 2**(-70), go to ExpSm. 38 | 1. If |X| > 16480*log_10(2) (base 10 log of 2), go to ExpBig. 40 | 2. If |X| < 2**(-70), go to ExpSm.
|
D | gen_except.S | 59 beq do_check |go handle idle frame 61 beqs unimp_x |go handle unimp frame 63 beqs unimp_x |go handle unimp frame 176 bra commonE |go clean and exit 207 bra do_clean |go clean and exit 218 bras ovfl_unfl |go to unfl_ovfl to determine if 274 bra do_clean |go clean and exit 376 | If trace mode enabled, then go to trace handler. This handler
|
D | util.S | 187 jmp (%a1) |go to the correct routine 194 bra set_sign |now go set the sign 197 bra set_sign |now go set the sign 228 bra set_sign |now go set the sign 424 beqs opc_1b |if set, go to cmdreg1b 517 jmp (%a1) |go to the correct routine 524 bra uset_sign |now go set the sign 528 bra uset_sign |now go set the sign 560 bra uset_sign |now go set the sign
|
D | satanh.S | 24 | 1. If |X| >= 1, go to 3. 33 | 3. If |X| > 1, go to 5.
|
D | sasin.S | 23 | 1. If |X| >= 1, go to 3. 30 | 3. If |X| > 1, go to 5.
|
D | stanh.S | 23 | 1. If |X| >= (5/2) log2 or |X| <= 2**(-40), go to 3. 31 | go to 7. 33 | 4. (|X| >= (5/2) log2) If |X| >= 50 log2, go to 6.
|
D | x_store.S | 140 beqs get_mant |if positive, go process mantissa 143 bras get_mant |go process mantissa 148 beqs dbl_inf |if positive, go ahead and write it
|
D | scosh.S | 23 | 1. If |X| > 16380 log2, go to 3. 30 | 3. (|X| > 16380 log2). If |X| > 16480 log2, go to 5.
|
D | ssin.S | 32 | 2. If |X| >= 15Pi or |X| < 2**(-40), go to 7. 38 | 4. If k is even, go to 6. 50 | 7. If |X| > 1, go to 9. 54 | 9. Overwrite X by X := X rem 2Pi. Now that |X| <= Pi, go back to 3. 57 | 1. If |X| >= 15Pi or |X| < 2**(-40), go to 6. 62 | 3. If k is even, go to 5. 76 | 6. If |X| > 1, go to 8. 80 | 8. Overwrite X by X := X rem 2Pi. Now that |X| <= Pi, go back to 2.
|
D | ssinh.S | 23 | 1. If |X| > 16380 log2, go to 3. 30 | 3. If |X| > 16480 log2, go to 5.
|
D | stan.S | 24 | 1. If |X| >= 15Pi or |X| < 2**(-40), go to 6. 29 | 3. If k is odd, go to 5. 43 | 6. If |X| > 1, go to 8. 47 | 8. Overwrite X by X := X rem 2Pi. Now that |X| <= Pi, go back to 2.
|
D | bugfix.S | 186 | cu src equal to xu dest or equal to nu dest. If so, go to 188 | xu dest or equal to nu dest. If so, go to tst_opcl. Else, 191 | Check for opclass 0. If not, go and check for opclass 2 and sgl. 205 | Check for cu dest equal to nu dest. If so, go and fix the 358 | go and fix the bug condition. Otherwise, exit.
|
D | srem_mod.S | 30 | R := X, go to Step 4. 36 | 3.1 If R = Y, go to Step 9. 38 | 3.3 If j = 0, go to Step 4. 44 | MOD is requested, go to Step 6.
|
D | setox.S | 60 | 1.1 If |X| >= 2^(-65), go to Step 1.3. 62 | 1.3 If |X| < 16380 log(2), go to Step 2. 154 | 6.1 If AdjFlag = 0, go to 6.3 186 | 8.1 If |X| > 16480 log2, go to Step 9. 197 | 9.1 If X < 0, go to 9.3 198 | 9.2 ans := Huge, go to 9.4 607 bra EXPCONT1 | ...go back to Step 3
|
D | decbin.S | 445 bras calc_p |go to init section 450 bras calc_p |go to init section 483 beqs mul |if clear, go to multiply
|
D | x_unimp.S | 66 bsrl get_op |go get operand(s)
|
D | satan.S | 23 | Step 1. If |X| >= 16 or |X| < 1/16, go to Step 5. 35 | Step 5. If |X| >= 16, go to Step 7.
|
D | x_fline.S | 66 | ;and go to FPSP_UNIMP
|
D | sgetem.S | 58 bsr nrm_set |normalize (exp will go negative)
|
D | bindec.S | 256 bras A4_str |go move out ILOG 640 bne not_zr |if non-zero, go to second test 679 fblt A14_st |if less, all is ok, go to A14
|
D | round.S | 52 tstl %d0 |if grs are zero, go force 280 | would go less than 0. In that case the number becomes a denorm - the 321 bsr nrm_set |else exp won't go past 0
|
D | slog2.S | 82 | go to Step 3.
|
D | binstr.S | 29 | extracts and shifts. The three msbs from d2 will go into
|
D | res_func.S | 71 bsr nrm_set |normalize number (exp will go negative) 1958 jmp (%a0) |go to the routine 2000 bra p_write |go write results 2005 bra p_write |go write the result 2009 bra p_write |go write the result
|
/linux-4.4.14/arch/alpha/lib/ |
D | ev6-memcpy.S | 79 cmple $18, 127, $1 # E : Can we go through the unrolled loop? 107 subq $18, 192, $2 # E : At least two more trips to go? 195 bne $1, $aligndest # U : go until we are aligned. 234 bgt $18, $misalign_byte # U : more to go?
|
D | ev6-clear_user.S | 184 # $1 is the number of quadwords left to go. 189 beq $1, $trailbytes # U .. .. .. : U L U L : Only 0..7 bytes to go 202 # We have an unknown number of bytes left to go.
|
/linux-4.4.14/Documentation/watchdog/ |
D | convert_drivers_to_kernel_api.txt | 18 go. Only very few driver-specific details have to be moved to other functions. 22 close preparations) can simply go. Device specific stuff needs to go to the 29 - write: Can simply go, all defined behaviour is taken care of by the framework, 84 refactoring. The rest can go. 186 can go, though. This will likely be some code in open(), close() or write().
|
D | watchdog-api.txt | 109 Some watchdog timers can be set to have a trigger go off before the 119 when the timeout will go off. It is not the number of seconds until 121 and the pretimeout to 10 seconds, the pretimeout will go off in 50
|
/linux-4.4.14/arch/m32r/kernel/ |
D | head.S | 88 beqz r4, .Lendloop1 ; any more to go? 92 bnez r4, .Lloop1 ; go do some more 96 beqz r4, .Lendloop2 ; any more to go? 101 bnez r4, .Lloop2 ; go do some more
|
/linux-4.4.14/Documentation/hwmon/ |
D | amc6821 | 64 pwm1 = pwm1_auto_point2_pwm. It can go from 69 speed. It can go from temp1_auto_point2_temp. 81 pwm1 = pwm1_auto_point2_pwm. It can go from
|
D | asb100 | 17 supply a datasheet for these chips. Thanks go to many people who helped
|
D | lm63 | 23 Thanks go to Tyan and especially Alex Buckingham for setting up a remote
|
D | f71882fg | 95 vica versa. So the temperature zone trip points 1-4 (or 1-2) go from high temp
|
/linux-4.4.14/arch/arm/mach-vexpress/ |
D | dcscb_setup.S | 33 2: @ Implementation-specific local CPU setup operations should go here,
|
/linux-4.4.14/fs/jffs2/ |
D | TODO | 23 - Split writes so they go to two separate blocks rather than just c->nextblock. 29 the full dirent, we only need to go to the flash in lookup() when we think we've
|
/linux-4.4.14/drivers/video/logo/ |
D | logo_m32r_clut224.ppm | 9 # http://www.is.aist.go.jp/etlcdb/util/p2a.htm#English
|
/linux-4.4.14/arch/x86/realmode/rm/ |
D | trampoline_32.S | 41 movl tr_start, %eax # where we need to go
|
/linux-4.4.14/arch/arm/mach-omap2/ |
D | sram242x.S | 53 str r3, [r2] @ go to L1-freq operation 57 bl voltage_shift @ go drop voltage 77 bl voltage_shift @ go raise voltage 81 str r3, [r2] @ go to L0-freq operation 257 str r7, [r8] @ go to fast relock
|
D | sram243x.S | 53 str r3, [r2] @ go to L1-freq operation 57 bl voltage_shift @ go drop voltage 77 bl voltage_shift @ go raise voltage 81 str r3, [r2] @ go to L0-freq operation 257 str r7, [r8] @ go to fast relock
|
/linux-4.4.14/drivers/net/wireless/ath/ath5k/ |
D | phy.c | 487 const struct ath5k_gain_opt *go; in ath5k_hw_rf_gainf_corr() local 496 go = &rfgain_opt_5112; in ath5k_hw_rf_gainf_corr() 500 g_step = &go->go_step[ah->ah_gain.g_step_idx]; in ath5k_hw_rf_gainf_corr() 610 const struct ath5k_gain_opt *go; in ath5k_hw_rf_gainf_adjust() local 616 go = &rfgain_opt_5111; in ath5k_hw_rf_gainf_adjust() 619 go = &rfgain_opt_5112; in ath5k_hw_rf_gainf_adjust() 625 g_step = &go->go_step[ah->ah_gain.g_step_idx]; in ath5k_hw_rf_gainf_adjust() 636 g_step = &go->go_step[ah->ah_gain.g_step_idx]) in ath5k_hw_rf_gainf_adjust() 638 (go->go_step[--(ah->ah_gain.g_step_idx)].gos_gain - in ath5k_hw_rf_gainf_adjust() 648 if (ah->ah_gain.g_step_idx == (go->go_steps_count - 1)) in ath5k_hw_rf_gainf_adjust() [all …]
|
/linux-4.4.14/arch/x86/entry/vdso/ |
D | vdso2c.c | 168 static void go(void *raw_addr, size_t raw_len, in go() function 246 go(raw_addr, raw_len, stripped_addr, stripped_len, outfile, name); in main()
|
D | vdso2c.h | 7 static void BITSFUNC(go)(void *raw_addr, size_t raw_len, in BITSFUNC() argument
|
/linux-4.4.14/drivers/net/ethernet/brocade/bna/ |
D | Kconfig | 14 For general information and support, go to the QLogic support
|
/linux-4.4.14/lib/ |
D | Kconfig.kgdb | 116 will happen until you type 'go'. 118 you type 'go', you will be warned by kdb. The secend time you type 119 'go', KDB tries to continue. No guarantees that the
|
/linux-4.4.14/arch/blackfin/mach-bf561/boards/ |
D | Kconfig | 27 please go to http://www.niistt.ru/
|
/linux-4.4.14/arch/arm/include/debug/ |
D | tegra.S | 84 bne 100f @ no; go load the addresses 151 bne 92f @ Yes, go process it
|
/linux-4.4.14/arch/m32r/boot/compressed/ |
D | head.S | 107 beqz r4, .Lendloop1 ; any more to go? 111 bnez r4, .Lloop1 ; go do some more
|
/linux-4.4.14/arch/arm/mach-lpc32xx/ |
D | suspend.S | 53 @ Wait for SDRAM busy status to go busy and then idle
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-bus-event_source-devices-format | 6 Attribute group to describe the magic bits that go into
|
/linux-4.4.14/Documentation/ |
D | mono.txt | 15 http://go-mono.com/download.html 19 http://www.go-mono.com/compiling.html
|
D | braille-console.txt | 22 page up/down keys go at the top/bottom of the screen, and the home key goes back
|
D | basic_profiling.txt | 2 go read the real docs ;-) Please don't add more stuff, but feel free to
|
D | dell_rbu.txt | 14 Please go to http://support.dell.com register and you can find info on 16 Libsmbios can also be used to update BIOS on Dell systems go to
|
D | SM501.txt | 28 need to create a new bus-type and the associated code to go with it.
|
D | iostats.txt | 50 go to zero as I/Os complete; all others only increase (unless they 82 The only field that should go to zero. Incremented as requests are
|
D | kref.txt | 5 you want refcounts, krefs are the way to go. 40 refcount cannot go to zero) you may do this without a lock.
|
D | HOWTO | 21 know to achieve this by describing the process you need to go through, 189 go to the Linux Kernel Janitor's project: 195 and possibly be pointed in the direction of what to go work on next, if 329 expected to go into the mainline kernel at the next merge period. 357 To work in the already reported bug reports, go to http://bugzilla.kernel.org.
|
D | CodingStyle | 313 "unsigned long", then by all means go ahead and use a typedef. 454 you should probably go back to chapter 6 for a while. You can make 536 This will make emacs go better with the kernel coding style for C 757 that can go into these 5 milliseconds. 864 Large, non-trivial assembly functions should go in .S files, with corresponding 897 If you have a function or variable which may potentially go unused in a
|
D | preempt-locking.txt | 58 means you can't do oddball things like acquire a lock and go off to
|
D | vfio.txt | 23 go through the full development cycle to become proper upstream 237 /* Gratuitous device reset and go... */ 365 /* Gratuitous device reset and go... */
|
/linux-4.4.14/Documentation/devicetree/bindings/ |
D | submitting-patches.txt | 48 which ones to review and which ones are ok to let go. 52 maintainers after a few weeks, go ahead and take it.
|
/linux-4.4.14/arch/mn10300/mm/ |
D | cache-dbg-flush-by-tag.S | 109 # now go and do the icache
|
D | cache-inv-by-tag.S | 268 # go around again if the counter hasn't yet reached zero
|
/linux-4.4.14/Documentation/devicetree/bindings/mtd/ |
D | gpmc-onenand.txt | 44 /* partitions go here */
|
D | gpmc-nand.txt | 91 /* partitions go here */
|
/linux-4.4.14/drivers/powercap/ |
D | Kconfig | 17 # Client driver configurations go here.
|
/linux-4.4.14/Documentation/blockdev/ |
D | nbd.txt | 16 tools, go to http://nbd.sf.net/.
|
/linux-4.4.14/Documentation/devicetree/bindings/pwm/ |
D | pwm-tipwmss.txt | 30 /* child nodes go here */
|
/linux-4.4.14/fs/reiserfs/ |
D | Kconfig | 36 operation. It will also go substantially slower. More than once we 38 latest benchmarks.:-) Use of this option allows our team to go all
|
/linux-4.4.14/Documentation/powerpc/ |
D | mpc52xx.txt | 4 For the latest info, go to http://www.246tNt.com/mpc52xx/
|
/linux-4.4.14/arch/m68k/ifpsp060/src/ |
D | fpsp.S | 1318 # INEX1 : none (packed doesn't go through here) 1367 bra.w fu_in_exc_ovfl # go insert overflow frame 2983 # call fmovm_calc_ea which will go through the ea calc process and, 6160 # Step 1. If |X| >= 16 or |X| < 1/16, go to Step 5. # 6173 # Step 5. If |X| >= 16, go to Step 7. # 6713 # 1. If |X| >= 1, go to 3. # 6720 # 3. If |X| > 1, go to 5. # 6988 # 1.1 If |X| >= 1/4, go to Step 1.3. # 6990 # 1.3 If |X| < 70 log(2), go to Step 2. # 7048 # 6.1 If M <= 63, go to Step 6.3. # [all …]
|
D | fplsp.S | 4923 # 2. If |X| >= 15Pi or |X| < 2**(-40), go to 7. # 4929 # 4. If k is even, go to 6. # 4942 # 7. If |X| > 1, go to 9. # 4948 # go back to 3. # 4951 # 1. If |X| >= 15Pi or |X| < 2**(-40), go to 6. # 4956 # 3. If k is even, go to 5. # 4970 # 6. If |X| > 1, go to 8. # 4975 # go back to 2. # 5625 # 1. If |X| >= 15Pi or |X| < 2**(-40), go to 6. # 5630 # 3. If k is odd, go to 5. # [all …]
|
/linux-4.4.14/arch/avr32/boards/hammerhead/ |
D | Kconfig | 27 also go through the ALSA settings to get it working.
|
/linux-4.4.14/Documentation/misc-devices/ |
D | spear-pcie-gadget.txt | 94 go for link up now. 116 go for link up now
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/ |
D | fw-api-mac.h | 362 struct iwl_mac_data_go go; member
|
D | mac-ctxt.c | 1191 iwl_mvm_mac_ctxt_cmd_fill_ap(mvm, vif, &cmd.go.ap, in iwl_mvm_mac_ctxt_cmd_go() 1194 cmd.go.ctwin = cpu_to_le32(noa->oppps_ctwindow & in iwl_mvm_mac_ctxt_cmd_go() 1196 cmd.go.opp_ps_enabled = in iwl_mvm_mac_ctxt_cmd_go()
|
/linux-4.4.14/Documentation/cpu-freq/ |
D | index.txt | 38 send an email to linux-pm@vger.kernel.org, to subscribe go to
|
/linux-4.4.14/kernel/trace/ |
D | trace_selftest.c | 1035 int go; member 1056 while (!x->go) { in trace_wakeup_test_thread() 1119 data.go = 1; in trace_selftest_startup_wakeup()
|
/linux-4.4.14/Documentation/scsi/ |
D | bfa.txt | 80 For general product and support info, go to the Brocade website at:
|
D | cxgb3i.txt | 81 4. To direct open-iscsi traffic to go through cxgb3i's accelerated path,
|
D | libsas.txt | 53 Then as you go along and initialize your phys you also 93 sas_prim -- this is where primitives go when they're 311 go out on the transport *immediately*. There is *no*
|
D | aacraid.txt | 132 where fibs that go to the hardware are consistently called hw_fibs and
|
/linux-4.4.14/arch/arm/lib/ |
D | memset.S | 52 ldmeqfd sp!, {r8, pc} @ Now <64 bytes to go.
|
/linux-4.4.14/fs/pstore/ |
D | Kconfig | 11 provide the data, so you probably should just go say "Y"
|
/linux-4.4.14/Documentation/arm/ |
D | tcm.txt | 80 Functions to go into itcm can be tagged like this: 88 Variables to go into dtcm can be tagged like this:
|
/linux-4.4.14/Documentation/devicetree/bindings/soc/qcom/ |
D | qcom,gsbi.txt | 57 /* child nodes go under here */
|
/linux-4.4.14/arch/s390/kernel/ |
D | head64.S | 101 brasl %r14,start_kernel # go to C code
|
/linux-4.4.14/Documentation/fb/ |
D | metronomefb.txt | 25 which would typically go into /lib/firmware/metronome.wbf depending on your
|
D | deferred_io.txt | 26 have gone quiet, we go and really update the framebuffer which would be
|
/linux-4.4.14/Documentation/filesystems/ |
D | ubifs.txt | 82 bulk_read read more in one go to take advantage of flash 89 of a file can go unnoticed.
|
D | ceph.txt | 49 go through the tedious process of migrating data between servers.
|
/linux-4.4.14/arch/cris/boot/rescue/ |
D | head_v10.S | 160 ;; we now should go through the checksum-table and check the listed 225 beq ploop ; checksums matched, go to next entry
|
/linux-4.4.14/Documentation/block/ |
D | cfq-iosched.txt | 240 All cfq queues doing synchronous sequential IO go on to sync-idle tree. 243 All synchronous non-sequential queues go on sync-noidle tree. Also any 244 request which are marked with REQ_NOIDLE go on this service tree. On this 250 All async writes go on async service tree. There is no idling on async
|
/linux-4.4.14/drivers/staging/speakup/ |
D | DefaultKeyAssignments | 38 InsKeyPad-star n<x|y> go to line (y) or column (x). Where 'n' is any
|
/linux-4.4.14/fs/quota/ |
D | Kconfig | 36 Note that this behavior is currently deprecated and may go away in
|
/linux-4.4.14/Documentation/locking/ |
D | lglock.txt | 38 that the reference to the local CPUs lock does not go out of scope. 119 CPUs rather than the actually present CPUs or a CPU could go off-line
|
D | rt-mutex-design.txt | 186 Before I go further and talk about how the PI chain is stored through lists 509 the entire time, and it is not let go when we grab the pi_lock of the 567 we go about the slow path (rt_mutex_slowlock). 644 If the mutex has a timeout, we set up a timer to go off to break us out 680 (or deadlock checking is on), we unlock the wait_lock of the mutex and go ahead 684 mutex (waiter "task" field is not NULL), then we go to sleep (call schedule). 697 we just simply add ourselves back on the lists and go back to sleep.
|
/linux-4.4.14/Documentation/w1/slaves/ |
D | w1_therm | 34 time and then go back to read individual sensors. That isn't
|
/linux-4.4.14/Documentation/usb/ |
D | mtouchusb.txt | 65 this driver! If you want touch drivers only supported within X, please go to:
|
D | rio.txt | 49 URL: <http://rio500.sourceforge.net>. You can also go to the project's
|
D | ehci.txt | 162 and some devices now go faster, while others go slower.
|
/linux-4.4.14/drivers/gpu/ipu-v3/ |
D | ipu-cpmem.c | 295 int bpp = 0, npb = 0, ro, go, bo, to; in ipu_cpmem_set_format_rgb() local 298 go = rgb->bits_per_pixel - rgb->green.length - rgb->green.offset; in ipu_cpmem_set_format_rgb() 305 ipu_ch_param_write_field(ch, IPU_FIELD_OFS1, go); in ipu_cpmem_set_format_rgb()
|
/linux-4.4.14/Documentation/development-process/ |
D | 7.AdvancedTopics | 62 from development branches when they are in complete form and ready to go - 112 slip in ill-advised changes which go into the mainline below the review 119 to trust things *without* then having to go and check every
|
D | 2.Process | 96 kernels go out with a handful of known regressions though, hopefully, none 132 Patches do not go directly from the developer's keyboard into the mainline 137 and controversial changes, go on for years. Much developer frustration 242 normally the right way to go. 366 Some major subsystem maintainers use quilt to manage patches intended to go 431 beginning developers to go wrong. Somebody who asks a networking-related
|
D | 6.Followthrough | 75 go away. They will not go away. If you repost code without having 77 that your patches go nowhere.
|
D | 4.Coding | 10 number of ways in which kernel developers can go wrong. Then the focus 52 can never be transgressed. If there is a good reason to go against the 221 and try to avoid "fixes" which make the warning go away without addressing 280 code responds when things go badly. See
|
/linux-4.4.14/Documentation/filesystems/pohmelfs/ |
D | network_protocol.txt | 39 NETFS_READ_PAGES, /* Read multiple contiguous pages in one go */ 180 Used to read multiple contiguous pages in one go.
|
/linux-4.4.14/drivers/block/paride/ |
D | pg.c | 288 static int pg_wait(struct pg *dev, int go, int stop, unsigned long tmo, char *msg) in pg_wait() argument 295 while ((((r = status_reg(dev)) & go) || (stop && (!(r & stop)))) in pg_wait()
|
D | pf.c | 403 static int pf_wait(struct pf_unit *pf, int go, int stop, char *fun, char *msg) in pf_wait() argument 408 while ((((r = status_reg(pf)) & go) || (stop && (!(r & stop)))) in pf_wait()
|
D | pcd.c | 354 static int pcd_wait(struct pcd_unit *cd, int go, int stop, char *fun, char *msg) in pcd_wait() argument 359 while ((((r = status_reg(cd)) & go) || (stop && (!(r & stop)))) in pcd_wait()
|
D | pt.c | 272 static int pt_wait(struct pt_unit *tape, int go, int stop, char *fun, char *msg) in pt_wait() argument 278 while ((((r = status_reg(pi)) & go) || (stop && (!(r & stop)))) in pt_wait()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | logicpd-torpedo-som.dtsi | 106 * probably device tree overlays is the way to go with the various SOM and
|
D | omap5-board-common.dtsi | 480 /* VCC_2V8_DISP: Does not go anywhere */ 533 /* VDD_3v0: Does not go anywhere */
|
/linux-4.4.14/Documentation/input/ |
D | appletouch.txt | 14 Credits go to Johannes Berg for reverse-engineering the touchpad protocol,
|
/linux-4.4.14/Documentation/leds/ |
D | ledtrig-transient.txt | 103 go back to LED_OFF. 105 go back to LED_FULL.
|
/linux-4.4.14/Documentation/devicetree/bindings/i2c/ |
D | i2c-arb-gpio-challenge.txt | 51 - slew-delay-us: microseconds to wait for a GPIO to go high. Default is 10 us.
|
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | ti,c64x+megamod-pic.txt | 84 This is a minimal example where all individual interrupts go through a
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | ep8248e.dts | 102 // Temporary -- will go away once kernel uses ranges for get_immrbase().
|
D | ep88xc.dts | 77 // Temporary -- will go away once kernel uses ranges for get_immrbase().
|
D | mpc885ads.dts | 78 // Temporary -- will go away once kernel uses ranges for get_immrbase().
|
D | pq2fads.dts | 124 // Temporary -- will go away once kernel uses ranges for get_immrbase().
|
D | mpc8272ads.dts | 126 // Temporary -- will go away once kernel uses ranges for get_immrbase().
|
/linux-4.4.14/Documentation/devicetree/ |
D | overlay-notes.txt | 99 Finally, if you need to remove all overlays in one-go, just call
|
/linux-4.4.14/Documentation/dvb/ |
D | contributors.txt | 1 Thanks go to the following people for patches and contributions:
|
/linux-4.4.14/Documentation/arm/OMAP/ |
D | DSS | 131 - Overlay defines where the pixels are read from and where they go on the 168 overlays List of overlay numbers to which framebuffer pixels go 232 Here's the default setup on OMAP3 SDP board. All planes go to LCD. DVI
|
/linux-4.4.14/sound/pci/trident/ |
D | trident_main.c | 1551 unsigned int val, go; in snd_trident_trigger() local 1557 go = 1; in snd_trident_trigger() 1562 go = 0; in snd_trident_trigger() 1580 if (go) in snd_trident_trigger() 1583 if (go) { in snd_trident_trigger() 1600 if (!go) in snd_trident_trigger() 1609 if (!go) in snd_trident_trigger() 1612 if (go) { in snd_trident_trigger() 1618 if (go) { in snd_trident_trigger()
|
/linux-4.4.14/Documentation/devicetree/bindings/phy/ |
D | nvidia,tegra20-usb-phy.txt | 67 otg means it can operate as either ("on the go")
|
/linux-4.4.14/Documentation/mips/ |
D | AU1xxx_IDE.README | 9 the white or black list, go to the 'ADD NEW HARD DISC TO WHITE OR BLACK LIST'
|
/linux-4.4.14/Documentation/devicetree/bindings/regulator/ |
D | regulator.txt | 13 - regulator-allow-bypass: allow the regulator to go into bypass mode
|
/linux-4.4.14/arch/sparc/lib/ |
D | checksum_32.S | 358 bne 5b ! we did not go negative, continue looping 361 ccmerge:be ccte ! nope, go and check for end cruft 394 bne ccdbl ! we did not go negative, continue looping
|
/linux-4.4.14/Documentation/vm/ |
D | cleancache.txt | 131 are the first to go, and cleancache allows those pages to be 223 file removal or truncation operations either go through VFS or 231 go through the do_mpag_readpage routine or the FS should add
|
/linux-4.4.14/Documentation/isdn/ |
D | HiSax.cert | 76 If you wish to change the sources, go ahead; but note that then the
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | l2cc.txt | 46 addresses will go to the M0 port.
|
/linux-4.4.14/arch/sh/kernel/cpu/sh5/ |
D | switchto.S | 135 ! go to save_pc for a reschedule, or the initial thread.pc for a new process
|
/linux-4.4.14/Documentation/driver-model/ |
D | binding.txt | 91 go to 0. When it does, the remove callback of the driver is called. It
|
/linux-4.4.14/arch/arm/kvm/ |
D | interrupts.S | 151 @ We're all done, just restore the GPRs and go to the guest
|
/linux-4.4.14/tools/usb/usbip/ |
D | INSTALL | 94 directory where you want the object files and executables to go and run 120 you can set and what kinds of files go in them.
|
/linux-4.4.14/drivers/misc/ |
D | hpilo.c | 188 int active = 0, go = 1; in ctrl_set() local 193 go << CTRL_BITPOS_G; in ctrl_set()
|
/linux-4.4.14/Documentation/dmaengine/ |
D | provider.txt | 58 transfer, and whenever the transfer is started, the controller will go 64 and whenever a DRQ will be asserted, it will go through the collection 293 - Should report the bytes left to go over on the given channel
|
/linux-4.4.14/Documentation/frv/ |
D | atomic-ops.txt | 49 (5) If ICC3.Z is still true, go back to step (1).
|
/linux-4.4.14/Documentation/nvmem/ |
D | nvmem.txt | 23 representation for consumer devices to go get the data they require (MAC
|
/linux-4.4.14/include/video/ |
D | newport.h | 288 struct newport_rexregs go; member
|
/linux-4.4.14/arch/arm/mach-omap1/ |
D | ams-delta-fiq-handler.S | 153 bne data @ no - go to data processing
|
/linux-4.4.14/Documentation/devicetree/bindings/mfd/ |
D | s2mps11.txt | 23 down. When the system is suspended it will always go down thus triggerring
|
/linux-4.4.14/drivers/dma/ |
D | pl330.c | 1030 struct _arg_GO go; in _trigger() local 1067 go.chan = thrd->id; in _trigger() 1068 go.addr = req->mc_bus; in _trigger() 1069 go.ns = ns; in _trigger() 1070 _emit_GO(0, insn, &go); in _trigger()
|
/linux-4.4.14/drivers/scsi/sym53c8xx_2/ |
D | sym_fw2.h | 1001 offsetof(struct sym_ccb, phys.head.go.restart), 1032 offsetof(struct sym_ccb, phys.head.go.restart),
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | object.txt | 183 At the completion of lookup, FS-Cache will let the netfs go ahead with 248 can destroy themselves. This object waits for all its children to go away
|
/linux-4.4.14/Documentation/video4linux/ |
D | v4l2-framework.txt | 223 data of v4l2_subdev using v4l2_set_subdevdata(). That makes it easy to go 226 You also need a way to go from the low-level struct to v4l2_subdev. For the 404 v4l2_device_call_all(). That ensures that it will only go to the subdev 524 You should also add a helper inline function to go from a v4l2_subdev pointer 532 Use this to go from the v4l2_subdev struct to the i2c_client struct: 536 And this to go from an i2c_client to a v4l2_subdev struct: 681 Do not use .ioctl! This is deprecated and will go away in the future. 894 You can go from a video_device struct to the v4l2_device struct using:
|
/linux-4.4.14/Documentation/devicetree/bindings/bus/ |
D | ti-gpmc.txt | 129 /* child nodes go here */
|
/linux-4.4.14/Documentation/i2c/busses/ |
D | i2c-parport | 41 a sample electronics schema (credits go to Sylvain Munaut):
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/hisilicon/ |
D | hisilicon.txt | 38 If reg value is not zero, cpun exit wfi and go
|
/linux-4.4.14/arch/arm/kernel/ |
D | entry-common.S | 83 b local_restart @ ... and off we go
|
/linux-4.4.14/arch/sh/kernel/cpu/sh3/ |
D | entry.S | 497 jmp @r9 ! Off to do_IRQ() we go.
|
/linux-4.4.14/Documentation/s390/ |
D | CommonIO | 76 known devices go away, you need the "purge" command (see below).
|
/linux-4.4.14/Documentation/nvdimm/ |
D | btt.txt | 220 5. If TRIM flag set in map, return zeroes, and end IO (go to step 8) 221 6. If ERROR flag set in map, end IO with EIO (go to step 8)
|
/linux-4.4.14/arch/sh/lib/ |
D | checksum.S | 143 bt 9f ! if it's =0 go to 9f
|
/linux-4.4.14/Documentation/sound/oss/ |
D | mwave | 121 ro # Other kernel arguments go here.
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | knfsd-stats.txt | 119 Descriptions of the other statistics file should go here.
|
/linux-4.4.14/Documentation/device-mapper/ |
D | log-writes.txt | 60 dev_path : Device that all of the IO will go to normally.
|
/linux-4.4.14/scripts/package/ |
D | builddeb | 28 chmod -R go-w "$pdir"
|