Home
last modified time | relevance | path

Searched refs:alt (Results 1 – 141 of 141) sorted by relevance

/linux-4.1.27/drivers/tty/vt/
Ddefkeymap.map15 alt keycode 1 = Meta_Escape
17 alt keycode 2 = Meta_one
21 alt keycode 3 = Meta_two
24 alt keycode 4 = Meta_three
27 alt keycode 5 = Meta_four
30 alt keycode 6 = Meta_five
33 alt keycode 7 = Meta_six
36 alt keycode 8 = Meta_seven
39 alt keycode 9 = Meta_eight
41 alt keycode 10 = Meta_nine
[all …]
/linux-4.1.27/arch/arm64/kernel/
Dalternative.c38 struct alt_instr *alt; in __apply_alternatives() local
42 for (alt = region->begin; alt < region->end; alt++) { in __apply_alternatives()
43 if (!cpus_have_cap(alt->cpufeature)) in __apply_alternatives()
46 BUG_ON(alt->alt_len != alt->orig_len); in __apply_alternatives()
50 origptr = (u8 *)&alt->orig_offset + alt->orig_offset; in __apply_alternatives()
51 replptr = (u8 *)&alt->alt_offset + alt->alt_offset; in __apply_alternatives()
52 memcpy(origptr, replptr, alt->alt_len); in __apply_alternatives()
54 (uintptr_t)(origptr + alt->alt_len)); in __apply_alternatives()
/linux-4.1.27/arch/powerpc/perf/
Dpower6-pmu.c346 unsigned int alt; in find_alternatives_list() local
352 alt = event_alternatives[i][j]; in find_alternatives_list()
353 if (!alt || event < alt) in find_alternatives_list()
355 if (event == alt) in find_alternatives_list()
362 static int p6_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in p6_get_alternatives() argument
369 alt[0] = event; in p6_get_alternatives()
381 alt[nalt++] = aevent; in p6_get_alternatives()
391 alt[nalt++] = ((event ^ 0x6) & ~PM_PMC_MSKS) | in p6_get_alternatives()
396 alt[nalt++] = ((event ^ 0x2) & ~PM_PMC_MSKS) | in p6_get_alternatives()
413 switch (alt[i]) { in p6_get_alternatives()
[all …]
Dpower5+-pmu.c276 static int power5p_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in power5p_get_alternatives() argument
282 alt[0] = event; in power5p_get_alternatives()
290 alt[nalt++] = ae; in power5p_get_alternatives()
296 alt[nalt++] = ae; in power5p_get_alternatives()
312 switch (alt[i]) { in power5p_get_alternatives()
314 alt[j++] = 0x600005; /* PM_RUN_CYC */ in power5p_get_alternatives()
318 alt[j++] = 0xf; in power5p_get_alternatives()
321 alt[j++] = 0x500009; /* PM_RUN_INST_CMPL */ in power5p_get_alternatives()
325 alt[j++] = 0x100009; /* PM_INST_CMPL */ in power5p_get_alternatives()
326 alt[j++] = 0x200009; in power5p_get_alternatives()
[all …]
Dpower7-pmu.c160 static int power7_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in power7_get_alternatives() argument
165 alt[0] = event; in power7_get_alternatives()
172 alt[nalt++] = ae; in power7_get_alternatives()
177 alt[nalt++] = ae; in power7_get_alternatives()
190 switch (alt[i]) { in power7_get_alternatives()
192 alt[j++] = 0x600f4; /* PM_RUN_CYC */ in power7_get_alternatives()
195 alt[j++] = 0x1e; in power7_get_alternatives()
198 alt[j++] = 0x500fa; /* PM_RUN_INST_CMPL */ in power7_get_alternatives()
201 alt[j++] = 0x2; /* PM_PPC_CMPL */ in power7_get_alternatives()
Dpower8-pmu.c556 static int power8_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in power8_get_alternatives() argument
561 alt[num_alt++] = event; in power8_get_alternatives()
569 alt[num_alt++] = alt_event; in power8_get_alternatives()
580 switch (alt[i]) { in power8_get_alternatives()
582 alt[j++] = 0x600f4; /* PM_RUN_CYC */ in power8_get_alternatives()
585 alt[j++] = 0x1e; in power8_get_alternatives()
588 alt[j++] = 0x500fa; /* PM_RUN_INST_CMPL */ in power8_get_alternatives()
591 alt[j++] = 0x2; /* PM_PPC_CMPL */ in power8_get_alternatives()
Dpower4-pmu.c326 static int p4_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in p4_get_alternatives() argument
330 alt[0] = event; in p4_get_alternatives()
335 alt[1] = event ^ (0x8003 ^ 0x0224); in p4_get_alternatives()
341 alt[1] = event ^ (0x0c13 ^ 0x0c23); in p4_get_alternatives()
350 alt[na++] = ppc_inst_cmpl[j]; in p4_get_alternatives()
Dmpc7450-pmu.c226 static int mpc7450_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in mpc7450_get_alternatives() argument
231 alt[0] = event; in mpc7450_get_alternatives()
238 alt[nalt++] = ae; in mpc7450_get_alternatives()
Dpower5-pmu.c272 static int power5_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in power5_get_alternatives() argument
277 alt[0] = event; in power5_get_alternatives()
284 alt[nalt++] = ae; in power5_get_alternatives()
289 alt[nalt++] = ae; in power5_get_alternatives()
Dppc970-pmu.c246 static int p970_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in p970_get_alternatives() argument
248 alt[0] = event; in p970_get_alternatives()
252 alt[1] = event ^ 0x1000; in p970_get_alternatives()
Dcore-book3s.c1651 u64 alt[MAX_EVENT_ALTERNATIVES]; in can_go_on_limited_pmc() local
1670 n = ppmu->get_alternatives(ev, flags, alt); in can_go_on_limited_pmc()
1682 u64 alt[MAX_EVENT_ALTERNATIVES]; in normal_pmc_alternative() local
1686 n = ppmu->get_alternatives(ev, flags, alt); in normal_pmc_alternative()
1689 return alt[0]; in normal_pmc_alternative()
/linux-4.1.27/drivers/usb/storage/
Duas-detect.h17 struct usb_host_interface *alt = &intf->altsetting[i]; in uas_find_uas_alt_setting() local
19 if (uas_is_interface(alt)) in uas_find_uas_alt_setting()
20 return alt->desc.bAlternateSetting; in uas_find_uas_alt_setting()
26 static int uas_find_endpoints(struct usb_host_interface *alt, in uas_find_endpoints() argument
29 struct usb_host_endpoint *endpoint = alt->endpoint; in uas_find_endpoints()
30 unsigned i, n_endpoints = alt->desc.bNumEndpoints; in uas_find_endpoints()
61 int r, alt; in uas_use_uas_driver() local
64 alt = uas_find_uas_alt_setting(intf); in uas_use_uas_driver()
65 if (alt < 0) in uas_use_uas_driver()
68 r = uas_find_endpoints(&intf->altsetting[alt], eps); in uas_use_uas_driver()
Duas.c854 int alt; in uas_switch_interface() local
856 alt = uas_find_uas_alt_setting(intf); in uas_switch_interface()
857 if (alt < 0) in uas_switch_interface()
858 return alt; in uas_switch_interface()
861 intf->altsetting[0].desc.bInterfaceNumber, alt); in uas_switch_interface()
/linux-4.1.27/drivers/usb/core/
Dmessage.c1026 struct usb_host_interface *alt = intf->cur_altsetting; in create_intf_ep_devs() local
1032 for (i = 0; i < alt->desc.bNumEndpoints; ++i) in create_intf_ep_devs()
1033 (void) usb_create_ep_devs(&intf->dev, &alt->endpoint[i], udev); in create_intf_ep_devs()
1040 struct usb_host_interface *alt = intf->cur_altsetting; in remove_intf_ep_devs() local
1046 for (i = 0; i < alt->desc.bNumEndpoints; ++i) in remove_intf_ep_devs()
1047 usb_remove_ep_devs(&alt->endpoint[i]); in remove_intf_ep_devs()
1125 struct usb_host_interface *alt = intf->cur_altsetting; in usb_disable_interface() local
1128 for (i = 0; i < alt->desc.bNumEndpoints; ++i) { in usb_disable_interface()
1130 alt->endpoint[i].desc.bEndpointAddress, in usb_disable_interface()
1249 struct usb_host_interface *alt = intf->cur_altsetting; in usb_enable_interface() local
[all …]
Dconfig.c305 struct usb_host_interface *alt = &intfc->altsetting[j]; in usb_release_interface_cache() local
307 kfree(alt->endpoint); in usb_release_interface_cache()
308 kfree(alt->string); in usb_release_interface_cache()
321 struct usb_host_interface *alt; in usb_parse_interface() local
347 for ((i = 0, alt = &intfc->altsetting[0]); in usb_parse_interface()
349 (++i, ++alt)) { in usb_parse_interface()
350 if (alt->desc.bAlternateSetting == asnum) { in usb_parse_interface()
359 memcpy(&alt->desc, d, USB_DT_INTERFACE_SIZE); in usb_parse_interface()
363 alt->extra = buffer; in usb_parse_interface()
366 alt->extralen = i; in usb_parse_interface()
[all …]
Dsysfs.c893 struct usb_host_interface *alt; in modalias_show() local
897 alt = ACCESS_ONCE(intf->cur_altsetting); in modalias_show()
907 alt->desc.bInterfaceClass, in modalias_show()
908 alt->desc.bInterfaceSubClass, in modalias_show()
909 alt->desc.bInterfaceProtocol, in modalias_show()
910 alt->desc.bInterfaceNumber); in modalias_show()
978 struct usb_host_interface *alt = intf->cur_altsetting; in usb_create_sysfs_intf_files() local
983 if (!alt->string && !(udev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS)) in usb_create_sysfs_intf_files()
984 alt->string = usb_cache_string(udev, alt->desc.iInterface); in usb_create_sysfs_intf_files()
985 if (alt->string && device_create_file(&intf->dev, &dev_attr_interface)) in usb_create_sysfs_intf_files()
Dhcd.c1884 struct usb_host_interface *alt = NULL; in usb_hcd_alloc_bandwidth() local
1937 alt = usb_find_alt_setting(new_config, iface_num, 0); in usb_hcd_alloc_bandwidth()
1938 if (!alt) in usb_hcd_alloc_bandwidth()
1940 alt = first_alt; in usb_hcd_alloc_bandwidth()
1942 for (j = 0; j < alt->desc.bNumEndpoints; j++) { in usb_hcd_alloc_bandwidth()
1943 ret = hcd->driver->add_endpoint(hcd, udev, &alt->endpoint[j]); in usb_hcd_alloc_bandwidth()
/linux-4.1.27/Documentation/networking/
Dmac80211-auth-assoc-deauth.txt13 alt authentication needed (not FT)
16 alt authenticated/authenticating already
30 alt no probe request data known
38 alt WEP shared key auth
49 alt authenticated or associated
53 alt not previously authenticated (FT)
64 alt not using WPA
75 alt using WPA
/linux-4.1.27/drivers/media/usb/cpia2/
Dcpia2_usb.c64 static int set_alternate(struct camera_data *cam, unsigned int alt);
65 static int configure_transfer_mode(struct camera_data *cam, unsigned int alt);
384 static int configure_transfer_mode(struct camera_data *cam, unsigned int alt) in configure_transfer_mode() argument
406 cmd.buffer.block_data[0] = iso_regs[alt][0]; in configure_transfer_mode()
407 cmd.buffer.block_data[1] = iso_regs[alt][1]; in configure_transfer_mode()
408 cmd.buffer.block_data[2] = iso_regs[alt][2]; in configure_transfer_mode()
409 cmd.buffer.block_data[3] = iso_regs[alt][3]; in configure_transfer_mode()
431 if (alt == USBIF_BULK) { in configure_transfer_mode()
435 } else if (alt >= USBIF_ISO_1) { in configure_transfer_mode()
457 unsigned int alt) in cpia2_usb_change_streaming_alternate() argument
[all …]
Dcpia2.h469 unsigned int alt);
/linux-4.1.27/drivers/media/usb/cx231xx/
Dcx231xx-core.c49 static int alt = CX231XX_PINOUT; variable
50 module_param(alt, int, 0644);
51 MODULE_PARM_DESC(alt, "alternate setting to use for video endpoint");
469 int errCode, prev_alt = dev->video_mode.alt; in cx231xx_set_video_alternate()
482 dev->video_mode.alt = 3; in cx231xx_set_video_alternate()
485 dev->video_mode.alt = 2; in cx231xx_set_video_alternate()
488 dev->video_mode.alt = 1; in cx231xx_set_video_alternate()
491 dev->video_mode.alt = 0; in cx231xx_set_video_alternate()
495 dev->video_mode.alt = 0; in cx231xx_set_video_alternate()
497 cx231xx_coredbg("dev->video_mode.alt= %d\n", dev->video_mode.alt); in cx231xx_set_video_alternate()
[all …]
Dcx231xx.h429 int alt; /* alternate */ member
530 int alt; /* alternate */ member
879 int cx231xx_set_alt_setting(struct cx231xx *dev, u8 index, u8 alt);
Dcx231xx-cards.c1558 dev->video_mode.alt = -1; in cx231xx_usb_probe()
/linux-4.1.27/drivers/media/usb/stk1160/
Dstk1160-v4l.c115 int i, prev_alt = dev->alt; in stk1160_set_alternate()
128 dev->alt = i; in stk1160_set_alternate()
135 dev->alt_max_pkt_size[dev->alt]) in stk1160_set_alternate()
136 dev->alt = i; in stk1160_set_alternate()
139 stk1160_info("setting alternate %d\n", dev->alt); in stk1160_set_alternate()
141 if (dev->alt != prev_alt) { in stk1160_set_alternate()
143 min_pkt_size, dev->alt); in stk1160_set_alternate()
145 dev->alt, dev->alt_max_pkt_size[dev->alt]); in stk1160_set_alternate()
146 usb_set_interface(dev->udev, 0, dev->alt); in stk1160_set_alternate()
149 new_pkt_size = dev->max_pkt_size != dev->alt_max_pkt_size[dev->alt]; in stk1160_set_alternate()
[all …]
Dstk1160.h141 int alt; member
/linux-4.1.27/drivers/input/misc/
Dati_remote2.c807 struct usb_host_interface *alt = interface->cur_altsetting; in ati_remote2_probe() local
811 if (alt->desc.bInterfaceNumber) in ati_remote2_probe()
821 if (alt->desc.bNumEndpoints < 1 || !alt->endpoint) { in ati_remote2_probe()
828 ar2->ep[0] = &alt->endpoint[0].desc; in ati_remote2_probe()
844 alt = ar2->intf[1]->cur_altsetting; in ati_remote2_probe()
845 if (alt->desc.bNumEndpoints < 1 || !alt->endpoint) { in ati_remote2_probe()
851 ar2->ep[1] = &alt->endpoint[0].desc; in ati_remote2_probe()
898 struct usb_host_interface *alt = interface->cur_altsetting; in ati_remote2_disconnect() local
900 if (alt->desc.bInterfaceNumber) in ati_remote2_disconnect()
921 struct usb_host_interface *alt = interface->cur_altsetting; in ati_remote2_suspend() local
[all …]
Dims-pcu.c1658 struct usb_host_interface *alt; in ims_pcu_parse_cdc_data() local
1669 alt = pcu->ctrl_intf->cur_altsetting; in ims_pcu_parse_cdc_data()
1670 pcu->ep_ctrl = &alt->endpoint[0].desc; in ims_pcu_parse_cdc_data()
1678 alt = pcu->data_intf->cur_altsetting; in ims_pcu_parse_cdc_data()
1679 if (alt->desc.bNumEndpoints != 2) { in ims_pcu_parse_cdc_data()
1682 alt->desc.bNumEndpoints); in ims_pcu_parse_cdc_data()
1686 pcu->ep_out = &alt->endpoint[0].desc; in ims_pcu_parse_cdc_data()
1701 pcu->ep_in = &alt->endpoint[1].desc; in ims_pcu_parse_cdc_data()
2061 struct usb_host_interface *alt = intf->cur_altsetting; in ims_pcu_disconnect() local
2069 if (alt->desc.bInterfaceClass != USB_CLASS_COMM) in ims_pcu_disconnect()
[all …]
/linux-4.1.27/drivers/media/platform/vivid/
Dvivid-rds-gen.c139 bool alt) in vivid_rds_gen_fill() argument
144 rds->pty = alt ? 29 : 2; in vivid_rds_gen_fill()
147 rds->pty = alt ? 16 : 3; in vivid_rds_gen_fill()
154 rds->ta = alt; in vivid_rds_gen_fill()
158 if (alt) in vivid_rds_gen_fill()
Dvivid-radio-common.c74 bool alt = dev->radio_rx_rds_use_alternates; in vivid_radio_rds_init() local
95 dev->radio_tx_rds_radiotext->p_cur.p_char + alt * 64, in vivid_radio_rds_init()
99 vivid_rds_gen_fill(rds, dev->radio_rx_freq, alt); in vivid_radio_rds_init()
/linux-4.1.27/drivers/media/usb/gspca/stv06xx/
Dstv06xx.c285 struct usb_host_interface *alt; in stv06xx_start() local
290 alt = usb_altnum_to_altsetting(intf, sd->gspca_dev.alt); in stv06xx_start()
291 if (!alt) { in stv06xx_start()
296 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize); in stv06xx_start()
320 struct usb_host_interface *alt; in stv06xx_isoc_init() local
324 alt = &gspca_dev->dev->actconfig->intf_cache[0]->altsetting[1]; in stv06xx_isoc_init()
325 alt->endpoint[0].desc.wMaxPacketSize = in stv06xx_isoc_init()
334 struct usb_host_interface *alt; in stv06xx_isoc_nego() local
337 alt = &gspca_dev->dev->actconfig->intf_cache[0]->altsetting[1]; in stv06xx_isoc_nego()
338 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize); in stv06xx_isoc_nego()
[all …]
Dstv06xx_pb0100.c191 struct usb_host_interface *alt; in pb0100_start() local
198 alt = usb_altnum_to_altsetting(intf, sd->gspca_dev.alt); in pb0100_start()
199 if (!alt) in pb0100_start()
201 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize); in pb0100_start()
/linux-4.1.27/arch/x86/kernel/
Dmodule.c214 const Elf_Shdr *s, *text = NULL, *alt = NULL, *locks = NULL, in module_finalize() local
222 alt = s; in module_finalize()
229 if (alt) { in module_finalize()
231 void *aseg = (void *)alt->sh_addr; in module_finalize()
232 apply_alternatives(aseg, aseg + alt->sh_size); in module_finalize()
/linux-4.1.27/drivers/media/usb/em28xx/
Dem28xx-audio.c277 if (dev->alt == 0 || dev->is_audio_only) { in snd_em28xx_capture_open()
280 dev->alt = 1; in snd_em28xx_capture_open()
283 dev->alt = 7; in snd_em28xx_capture_open()
294 dev->ifnum, dev->alt); in snd_em28xx_capture_open()
295 usb_set_interface(dev->udev, dev->ifnum, dev->alt); in snd_em28xx_capture_open()
749 u8 alt; in em28xx_audio_urb_init() local
752 alt = 1; in em28xx_audio_urb_init()
754 alt = 7; in em28xx_audio_urb_init()
758 if (intf->num_altsetting <= alt) { in em28xx_audio_urb_init()
760 dev->ifnum, alt); in em28xx_audio_urb_init()
[all …]
Dem28xx-video.c62 static int alt; variable
63 module_param(alt, int, 0644);
64 MODULE_PARM_DESC(alt, "alternate setting to use for video endpoint");
370 dev->alt = 0; in em28xx_set_alternate()
371 if ((alt > 0) && (alt < dev->num_alt)) { in em28xx_set_alternate()
372 em28xx_videodbg("alternate forced to %d\n", dev->alt); in em28xx_set_alternate()
373 dev->alt = alt; in em28xx_set_alternate()
389 dev->alt = i; in em28xx_set_alternate()
395 dev->alt_max_pkt_size_isoc[dev->alt]) in em28xx_set_alternate()
396 dev->alt = i; in em28xx_set_alternate()
[all …]
Dem28xx.h684 int alt; /* alternate setting */ member
Dem28xx-cards.c3420 dev->alt = -1; in em28xx_usb_probe()
/linux-4.1.27/drivers/media/usb/gspca/
Dgspca.c581 if (gspca_dev->alt == 0) in gspca_set_alt0()
611 static struct usb_host_endpoint *alt_xfer(struct usb_host_interface *alt, in alt_xfer() argument
617 for (i = 0; i < alt->desc.bNumEndpoints; i++) { in alt_xfer()
618 ep = &alt->endpoint[i]; in alt_xfer()
668 u32 alt; member
715 ep_tb->alt = j; in build_isoc_ep_tb()
722 ep_tb->alt, ep_tb->bandwidth); in build_isoc_ep_tb()
846 int n, ret, xfer, alt, alt_idx; in gspca_init_transfer() local
858 gspca_dev->alt = gspca_dev->cam.bulk ? intf->num_altsetting : 0; in gspca_init_transfer()
868 if (gspca_dev->alt != 0) { in gspca_init_transfer()
[all …]
Dkonica.c181 struct usb_host_interface *alt; in sd_start() local
185 alt = usb_altnum_to_altsetting(intf, sd->gspca_dev.alt); in sd_start()
186 if (!alt) { in sd_start()
191 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize); in sd_start()
209 le16_to_cpu(alt->endpoint[i].desc.wMaxPacketSize); in sd_start()
Dstk014.c272 gspca_dev->alt); in sd_start()
275 gspca_dev->iface, gspca_dev->alt); in sd_start()
298 gspca_dev->alt); in sd_start()
Dxirlink_cit.c1448 struct usb_host_interface *alt; in cit_get_packet_size() local
1452 alt = usb_altnum_to_altsetting(intf, gspca_dev->alt); in cit_get_packet_size()
1453 if (!alt) { in cit_get_packet_size()
1458 return le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize); in cit_get_packet_size()
2635 struct usb_host_interface *alt; in sd_isoc_init() local
2651 alt = &gspca_dev->dev->actconfig->intf_cache[0]->altsetting[1]; in sd_isoc_init()
2652 alt->endpoint[0].desc.wMaxPacketSize = cpu_to_le16(max_packet_size); in sd_isoc_init()
2660 struct usb_host_interface *alt; in sd_isoc_nego() local
2674 alt = &gspca_dev->dev->actconfig->intf_cache[0]->altsetting[1]; in sd_isoc_nego()
2675 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize); in sd_isoc_nego()
[all …]
Dov519.c3489 struct usb_host_interface *alt; in ov511_mode_init_regs() local
3493 alt = usb_altnum_to_altsetting(intf, sd->gspca_dev.alt); in ov511_mode_init_regs()
3494 if (!alt) { in ov511_mode_init_regs()
3500 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize); in ov511_mode_init_regs()
3614 struct usb_host_interface *alt; in ov518_mode_init_regs() local
3618 alt = usb_altnum_to_altsetting(intf, sd->gspca_dev.alt); in ov518_mode_init_regs()
3619 if (!alt) { in ov518_mode_init_regs()
3625 packet_size = le16_to_cpu(alt->endpoint[0].desc.wMaxPacketSize); in ov518_mode_init_regs()
Dgspca.h207 __u8 alt; /* USB alternate setting */ member
Dspca500.c516 PDEBUG(D_PACK, "ClickSmart310 sync alt: %d", gspca_dev->alt); in spca500_synch310()
521 gspca_dev->alt) < 0) { in spca500_synch310()
Dsn9c20x.c1955 gspca_dev->alt = intf->num_altsetting; in sd_isoc_init()
1961 gspca_dev->alt = 2; in sd_isoc_init()
1964 gspca_dev->alt = 6; in sd_isoc_init()
1967 gspca_dev->alt = 9; in sd_isoc_init()
Dstk1135.c476 gspca_dev->alt); in sd_start()
Dse401.c331 gspca_dev->alt = 1; /* Ignore the bogus isoc alt settings */ in sd_isoc_init()
Dtopro.c4327 reg_w(gspca_dev, 0x22, gspca_dev->alt); in cx0342_6810_start()
4503 reg_w(gspca_dev, 0x22, gspca_dev->alt); in soi763a_6810_start()
/linux-4.1.27/drivers/usb/misc/
Dusbtest.c18 module_param_named(alt, override_alt, int, 0644);
19 MODULE_PARM_DESC(alt, ">= 0 to override altsetting selection");
58 int alt; member
105 struct usb_host_interface *alt; in get_endpoints() local
117 alt = intf->altsetting + tmp; in get_endpoints()
120 override_alt != alt->desc.bAlternateSetting) in get_endpoints()
126 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) { in get_endpoints()
129 e = alt->endpoint + ep; in get_endpoints()
176 dev->info->alt = alt->desc.bAlternateSetting; in get_endpoints()
177 if (alt->desc.bAlternateSetting != 0) { in get_endpoints()
[all …]
/linux-4.1.27/drivers/infiniband/hw/mlx4/
Dqp.c683 qp->alt.vid = 0xFFFF; in create_qp_common()
689 qp->alt.vid = 0xFFFF; in create_qp_common()
997 if (qp->alt.smac) { in destroy_qp_common()
998 mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac); in destroy_qp_common()
999 qp->alt.smac = 0; in destroy_qp_common()
1007 if (qp->alt.vid < 0x1000) { in destroy_qp_common()
1008 mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port, qp->alt.vid); in destroy_qp_common()
1009 qp->alt.vid = 0xFFFF; in destroy_qp_common()
1010 qp->alt.candidate_vid = 0xFFFF; in destroy_qp_common()
1011 qp->alt.update_vid = 0; in destroy_qp_common()
[all …]
Dmlx4_ib.h304 struct mlx4_roce_smac_vlan_info alt; member
/linux-4.1.27/sound/usb/
Dhelper.h22 #define get_endpoint(alt,ep) (&(alt)->endpoint[ep].desc) argument
/linux-4.1.27/drivers/media/i2c/soc_camera/
Dov9640.c355 struct ov9640_reg_alt *alt) in ov9640_alter_regs() argument
360 alt->com12 = OV9640_COM12_YUV_AVG; in ov9640_alter_regs()
361 alt->com13 = OV9640_COM13_Y_DELAY_EN | in ov9640_alter_regs()
365 alt->com7 = OV9640_COM7_RGB; in ov9640_alter_regs()
366 alt->com13 = OV9640_COM13_RGB_AVG; in ov9640_alter_regs()
367 alt->com15 = OV9640_COM15_RGB_555; in ov9640_alter_regs()
370 alt->com7 = OV9640_COM7_RGB; in ov9640_alter_regs()
371 alt->com13 = OV9640_COM13_RGB_AVG; in ov9640_alter_regs()
372 alt->com15 = OV9640_COM15_RGB_565; in ov9640_alter_regs()
/linux-4.1.27/drivers/usb/gadget/udc/
Dpxa27x_udc.h266 #define PXA_EP_BULK(_idx, addr, dir, config, iface, alt) \ argument
268 config, iface, alt)
269 #define PXA_EP_ISO(_idx, addr, dir, config, iface, alt) \ argument
271 config, iface, alt)
272 #define PXA_EP_INT(_idx, addr, dir, config, iface, alt) \ argument
274 config, iface, alt)
Dpxa27x_udc.c360 int alt = udc->last_alternate; in find_pxa_ep() local
367 if (is_match_usb_pxa(udc_usb_ep, ep, cfg, iface, alt)) in find_pxa_ep()
2158 static void pxa27x_change_interface(struct pxa_udc *udc, int iface, int alt) in pxa27x_change_interface() argument
2162 dev_dbg(udc->dev, "interface=%d, alternate setting=%d\n", iface, alt); in pxa27x_change_interface()
2165 udc->last_alternate = alt; in pxa27x_change_interface()
2169 req.wValue = alt; in pxa27x_change_interface()
/linux-4.1.27/drivers/ata/
Dpata_sc1200.c193 struct ata_port *alt = host->ports[1 ^ qc->ap->port_no]; in sc1200_qc_defer() local
203 if (alt && alt->qc_active) in sc1200_qc_defer()
Dpata_sl82c105.c215 struct ata_port *alt = host->ports[1 ^ qc->ap->port_no]; in sl82c105_qc_defer() local
225 if (alt && alt->qc_active) in sl82c105_qc_defer()
Dpata_artop.c279 struct ata_port *alt = host->ports[1 ^ qc->ap->port_no]; in artop6210_qc_defer() local
289 if (alt && alt->qc_active) in artop6210_qc_defer()
Dpata_hpt3x2n.c314 struct ata_port *alt = ap->host->ports[ap->port_no ^ 1]; in hpt3x2n_qc_defer() local
323 if ((flags & USE_DPLL) != dpll && alt->qc_active) in hpt3x2n_qc_defer()
/linux-4.1.27/drivers/usb/atm/
Dxusbatm.c54 struct usb_host_interface *alt; in xusbatm_find_intf() local
59 …if ((intf = usb_dev->actconfig->interface[i]) && (alt = usb_altnum_to_altsetting(intf, altsetting)… in xusbatm_find_intf()
60 for (j = 0; j < alt->desc.bNumEndpoints; j++) in xusbatm_find_intf()
61 if (alt->endpoint[j].desc.bEndpointAddress == ep) in xusbatm_find_intf()
Dueagle-atm.c2540 unsigned int alt; in uea_bind() local
2589 alt = altsetting[sc->modem_index]; in uea_bind()
2591 if (UEA_CHIP_VERSION(id) != ADI930 && alt > 0) { in uea_bind()
2592 if (alt <= 8 && in uea_bind()
2593 usb_set_interface(usb, UEA_DS_IFACE_NO, alt) == 0) { in uea_bind()
2594 uea_dbg(usb, "set alternate %u for 2 interface\n", alt); in uea_bind()
2599 "2 interface, using bulk mode\n", alt); in uea_bind()
/linux-4.1.27/drivers/pinctrl/
Dpinctrl-st.c234 struct regmap_field *alt, *oe, *pu, *od; member
249 const int alt, oe, pu, od, rt; member
354 .alt = 0, .oe = 5, .pu = 7, .od = 9, .rt = 16,
359 .alt = 0, .oe = 8, .pu = 10, .od = 12, .rt = 16,
364 .alt = 0, .oe = 6, .pu = 8, .od = 10, .rt = 38,
369 .alt = 0, .oe = 3, .pu = 4, .od = 5, .rt = 6,
374 .alt = 0, .oe = 5, .pu = 7, .od = 9, .rt = 11,
387 .alt = 0, .oe = 40, .pu = 50, .od = 60, .rt = 100,
396 .alt = 0,
461 struct regmap_field *alt = pc->alt; in st_pctl_set_function() local
[all …]
/linux-4.1.27/drivers/pinctrl/bcm/
Dpinctrl-cygnus-mux.c46 unsigned int alt; member
488 .alt = al, \
796 if (mux_log[i].mux.alt != mux->alt) { in cygnus_pinmux_set()
811 mux_log[i].mux.alt = mux->alt; in cygnus_pinmux_set()
818 val |= grp->mux.alt << grp->mux.shift; in cygnus_pinmux_set()
838 grp->mux.offset, grp->mux.shift, grp->mux.alt); in cygnus_pinmux_set_mux()
929 log->mux.alt = 0; in cygnus_mux_log_init()
/linux-4.1.27/arch/m68k/hp300/
Dhp300map.map69 alt keycode 55 = Meta_Tab
79 alt keycode 63 = Meta_grave
127 alt keycode 101 = Meta_backslash
134 alt keycode 107 = Meta_semicolon
137 alt keycode 108 = Meta_apostrophe
/linux-4.1.27/arch/x86/include/asm/
Dalternative-asm.h21 .macro altinstruction_entry orig alt feature orig_len alt_len pad_len
23 .long \alt - .
Dvdso.h19 unsigned long alt, alt_len; member
/linux-4.1.27/drivers/media/usb/dvb-usb/
Dfriio.c420 struct usb_host_interface *alt; in friio_probe() local
426 alt = usb_altnum_to_altsetting(intf, FRIIO_BULK_ALTSETTING); in friio_probe()
427 if (alt == NULL) { in friio_probe()
432 alt->desc.bInterfaceNumber, in friio_probe()
433 alt->desc.bAlternateSetting); in friio_probe()
Dm920x.c133 struct usb_host_interface *alt; in m920x_init_ep() local
135 if ((alt = usb_altnum_to_altsetting(intf, 1)) == NULL) { in m920x_init_ep()
140 return usb_set_interface(udev, alt->desc.bInterfaceNumber, in m920x_init_ep()
141 alt->desc.bAlternateSetting); in m920x_init_ep()
476 struct usb_host_interface *alt; in m920x_identify_state() local
478 alt = usb_altnum_to_altsetting(usb_ifnum_to_if(udev, 0), 1); in m920x_identify_state()
479 *cold = (alt == NULL) ? 1 : 0; in m920x_identify_state()
/linux-4.1.27/drivers/usb/gadget/function/
Df_obex.c195 static int obex_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in obex_set_alt() argument
201 if (alt != 0) in obex_set_alt()
208 if (alt > 1) in obex_set_alt()
230 if (alt == 1) { in obex_set_alt()
239 obex->cur_alt = alt; in obex_set_alt()
Df_phonet.c402 static int pn_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in pn_set_alt() argument
409 return (alt > 0) ? -EINVAL : 0; in pn_set_alt()
416 if (alt > 1) in pn_set_alt()
424 if (alt == 1) { in pn_set_alt()
461 u8 alt; in pn_get_alt() local
464 alt = port->usb != NULL; in pn_get_alt()
466 return alt; in pn_get_alt()
Df_sourcesink.c671 int alt) in enable_source_sink() argument
715 if (alt == 0) in enable_source_sink()
760 ss->cur_alt = alt; in enable_source_sink()
762 DBG(cdev, "%s enabled, alt intf %d\n", ss->function.name, alt); in enable_source_sink()
767 unsigned intf, unsigned alt) in sourcesink_set_alt() argument
774 return enable_source_sink(cdev, ss, alt); in sourcesink_set_alt()
Df_ecm.c534 static int ecm_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in ecm_set_alt() argument
541 if (alt != 0) in ecm_set_alt()
558 if (alt > 1) in ecm_set_alt()
582 if (alt == 1) { in ecm_set_alt()
Df_uvc.c287 uvc_function_set_alt(struct usb_function *f, unsigned interface, unsigned alt) in uvc_function_set_alt() argument
295 INFO(cdev, "uvc_function_set_alt(%u, %u)\n", interface, alt); in uvc_function_set_alt()
298 if (alt) in uvc_function_set_alt()
334 switch (alt) { in uvc_function_set_alt()
Df_uac2.c1143 afunc_set_alt(struct usb_function *fn, unsigned intf, unsigned alt) in afunc_set_alt() argument
1156 if (alt > 1) { in afunc_set_alt()
1163 if (alt) { in afunc_set_alt()
1174 agdev->as_out_alt = alt; in afunc_set_alt()
1184 agdev->as_in_alt = alt; in afunc_set_alt()
1215 if (alt == 0) { in afunc_set_alt()
Df_eem.c187 static int eem_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in eem_set_alt() argument
194 if (alt != 0) in eem_set_alt()
Df_uac1.c572 static int f_audio_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in f_audio_set_alt() argument
582 DBG(cdev, "intf %d, alt %d\n", intf, alt); in f_audio_set_alt()
590 if (alt == 1) { in f_audio_set_alt()
Df_ncm.c796 static int ncm_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in ncm_set_alt() argument
803 if (alt != 0) in ncm_set_alt()
821 if (alt > 1) in ncm_set_alt()
836 if (alt == 1) { in ncm_set_alt()
Df_serial.c150 static int gser_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in gser_set_alt() argument
Df_subset.c257 static int geth_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in geth_set_alt() argument
Df_hid.c506 static int hidg_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in hidg_set_alt() argument
512 VDBG(cdev, "hidg_set_alt intf:%d alt:%d\n", intf, alt); in hidg_set_alt()
Df_loopback.c366 unsigned intf, unsigned alt) in loopback_set_alt() argument
Df_printer.c1120 unsigned intf, unsigned alt) in printer_func_set_alt() argument
1125 if (!alt) in printer_func_set_alt()
Df_acm.c424 static int acm_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in acm_set_alt() argument
Df_rndis.c538 static int rndis_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in rndis_set_alt() argument
Df_fs.c2917 unsigned interface, unsigned alt) in ffs_func_set_alt() argument
2923 if (alt != (unsigned)-1) { in ffs_func_set_alt()
2942 if (alt == (unsigned)-1) { in ffs_func_set_alt()
Df_midi.c325 static int f_midi_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in f_midi_set_alt() argument
Df_mass_storage.c2330 static int fsg_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in fsg_set_alt() argument
/linux-4.1.27/drivers/w1/masters/
Dds2490.c990 int i, err, alt; in ds_probe() local
1014 alt = 3; in ds_probe()
1016 intf->altsetting[alt].desc.bInterfaceNumber, alt); in ds_probe()
1019 "for %d interface: err=%d.\n", alt, in ds_probe()
1020 intf->altsetting[alt].desc.bInterfaceNumber, err); in ds_probe()
1024 iface_desc = &intf->altsetting[alt]; in ds_probe()
/linux-4.1.27/include/linux/mfd/
Dasic3.h111 #define ASIC3_CONFIG_GPIO(gpio, alt, dir, init) (((gpio) & 0x7f) \ argument
112 | (((alt) & 0x7f) << 7) | (((dir) & 0x1) << 14) \
/linux-4.1.27/arch/arm/boot/dts/
Dwm8750-apc8750.dts23 wm,function = <2>; /* alt */
Dr8a7794-alt.dts16 compatible = "renesas,alt", "renesas,r8a7794";
Dsama5d3_lcd.dtsi117 pinctrl_lcd_rgb666_alt: lcd-rgb-2-alt {
167 pinctrl_lcd_rgb888_alt: lcd-rgb-3-alt {
Dste-hrefv60plus.dtsi88 * the "other alt C1" setting enables these pins)
Dstih416-clock.dtsi315 "clk-m-hva-alt",
350 clock-output-names = "clk-m-fvdp-proc-alt",
376 ""; /* clk-m-gpu-alt */
Domap3-pandora-common.dtsi188 left-alt {
189 label = "alt";
Dstih415-clock.dtsi348 clock-output-names = "clk-m-fvdp-proc-alt",
DMakefile495 r8a7794-alt.dtb \
/linux-4.1.27/drivers/tty/
Dsysrq.c585 unsigned int alt; member
762 sysrq->alt = KEY_RESERVED; in sysrq_handle_keypress()
765 sysrq->alt = code; in sysrq_handle_keypress()
771 if (value == 1 && sysrq->alt != KEY_RESERVED) { in sysrq_handle_keypress()
773 sysrq->alt_use = sysrq->alt; in sysrq_handle_keypress()
/linux-4.1.27/arch/arm/kernel/
Dvmlinux.lds.S81 *(.alt.smp.init)
201 *(.alt.smp.init)
/linux-4.1.27/arch/x86/vdso/
Dvma.c37 apply_alternatives((struct alt_instr *)(image->data + image->alt), in init_vdso_image()
38 (struct alt_instr *)(image->data + image->alt + in init_vdso_image()
/linux-4.1.27/arch/powerpc/include/asm/
Dmpc5121.h58 u32 alt; /* Address Latch Timing Register */ member
Dperf_event_server.h40 u64 alt[]);
/linux-4.1.27/drivers/staging/ozwpan/
Dozusbsvc1.c116 static int oz_usb_set_interface_req(void *hpd, u8 req_id, u8 index, u8 alt) in oz_usb_set_interface_req() argument
133 body->alternative = alt; in oz_usb_set_interface_req()
215 u8 alt = (u8)wvalue; in oz_usb_control_req() local
218 if_num, alt); in oz_usb_control_req()
Dozhcd.c102 u8 alt; member
862 u8 rcode, u8 if_num, u8 alt) in oz_hcd_complete_set_interface() argument
871 oz_dbg(ON, "Set interface %d alt %d\n", if_num, alt); in oz_hcd_complete_set_interface()
874 intf = &config->intf_cache[if_num]->altsetting[alt]; in oz_hcd_complete_set_interface()
879 port->iface[if_num].alt = alt; in oz_hcd_complete_set_interface()
1478 port->iface[(u8)windex].alt; in oz_process_ep0_urb()
1480 windex, port->iface[(u8)windex].alt); in oz_process_ep0_urb()
/linux-4.1.27/arch/sparc/kernel/
Ddtlb_prot.S20 rdpr %pstate, %g5 ! Move into alt-globals
/linux-4.1.27/drivers/media/usb/gspca/gl860/
Dgl860-ov9655.c296 gspca_dev->alt = 1 + 1; in ov9655_configure_alt()
300 gspca_dev->alt = 1 + 1; in ov9655_configure_alt()
Dgl860-ov2640.c335 gspca_dev->alt = 3 + 1; in ov2640_configure_alt()
341 gspca_dev->alt = 1 + 1; in ov2640_configure_alt()
Dgl860-mi1320.c337 gspca_dev->alt = 3 + 1; in mi1320_configure_alt()
342 gspca_dev->alt = 1 + 1; in mi1320_configure_alt()
Dgl860-mi2020.c621 gspca_dev->alt = 3 + 1; in mi2020_configure_alt()
627 gspca_dev->alt = 1 + 1; in mi2020_configure_alt()
/linux-4.1.27/sound/usb/misc/
Dua101.c922 struct usb_host_interface *alt; in find_format_descriptor() local
931 alt = &interface->altsetting[0]; in find_format_descriptor()
932 if (alt->desc.bNumEndpoints != 0) { in find_format_descriptor()
937 alt = &interface->altsetting[1]; in find_format_descriptor()
938 if (alt->desc.bNumEndpoints != 1) { in find_format_descriptor()
943 extra = alt->extra; in find_format_descriptor()
944 extralen = alt->extralen; in find_format_descriptor()
/linux-4.1.27/Documentation/sound/oss/
DAudioExcelDSP1674 <ctrl>-<alt>-<del> and boot Linux.
83 4) <ctrl>-<alt>-<del> and boot Linux. This will maintain the DOS configuration
DREADME.OSS355 2) _Cold_ boot to Linux by using "loadlin.exe". Hitting ctrl-alt-del
691 card to work by booting DOS before starting Linux (boot DOS, hit ctrl-alt-del
946 - Hit ctrl-alt-del (or use loadlin) to boot Linux. Don't
1399 (ctrl-alt-del can be used in place of loadlin.exe but it doesn't work with
/linux-4.1.27/drivers/usb/gadget/legacy/
Dtcm_usb_gadget.c2282 unsigned int alt; member
2290 int alt = work->alt; in usbg_delayed_set_alt() local
2299 if (alt == USB_G_ALT_INT_BBB) in usbg_delayed_set_alt()
2301 else if (alt == USB_G_ALT_INT_UAS) in usbg_delayed_set_alt()
2306 static int usbg_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in usbg_set_alt() argument
2310 if ((alt == USB_G_ALT_INT_BBB) || (alt == USB_G_ALT_INT_UAS)) { in usbg_set_alt()
2318 work->alt = alt; in usbg_set_alt()
/linux-4.1.27/arch/mips/boot/dts/cavium-octeon/
Docteon_3xxx.dts239 cavium,alt-phy-handle = <&phy100>;
246 cavium,alt-phy-handle = <&phy101>;
253 cavium,alt-phy-handle = <&phy102>;
260 cavium,alt-phy-handle = <&phy103>;
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dshmobile.txt35 compatible = "renesas,alt", "renesas,r8a7794"
/linux-4.1.27/drivers/net/usb/
Dusbnet.c98 struct usb_host_interface *alt = NULL; in usbnet_get_endpoints() local
106 alt = intf->altsetting + tmp; in usbnet_get_endpoints()
112 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) { in usbnet_get_endpoints()
116 e = alt->endpoint + ep; in usbnet_get_endpoints()
141 if (!alt || !in || !out) in usbnet_get_endpoints()
144 if (alt->desc.bAlternateSetting != 0 || in usbnet_get_endpoints()
146 tmp = usb_set_interface (dev->udev, alt->desc.bInterfaceNumber, in usbnet_get_endpoints()
147 alt->desc.bAlternateSetting); in usbnet_get_endpoints()
Dcdc_mbim.c114 static int cdc_mbim_set_ctrlalt(struct usbnet *dev, struct usb_interface *intf, u8 alt) in cdc_mbim_set_ctrlalt() argument
123 alt); in cdc_mbim_set_ctrlalt()
Dcdc_ncm.c951 struct usb_host_interface *alt; in cdc_ncm_select_altsetting() local
972 alt = usb_altnum_to_altsetting(intf, CDC_NCM_COMM_ALTSETTING_MBIM); in cdc_ncm_select_altsetting()
973 if (alt && cdc_ncm_comm_intf_is_mbim(alt)) in cdc_ncm_select_altsetting()
Dr8152.c1255 struct usb_host_interface *alt = intf->cur_altsetting; in alloc_all_mem() local
1256 struct usb_host_endpoint *ep_intr = alt->endpoint + 2; in alloc_all_mem()
/linux-4.1.27/arch/powerpc/boot/dts/
Dsbc8548.dts88 alt-flash@6,0 {
Dsbc8548-altflash.dts91 alt-flash@6,0 {
/linux-4.1.27/drivers/pinctrl/nomadik/
Dpinctrl-nomadik.c187 #define PIN_CFG(num, alt) \ argument
189 (PIN_NUM(num) | PIN_##alt))
191 #define PIN_CFG_INPUT(num, alt, pull) \ argument
193 (PIN_NUM(num) | PIN_##alt | PIN_INPUT_##pull))
195 #define PIN_CFG_OUTPUT(num, alt, val) \ argument
197 (PIN_NUM(num) | PIN_##alt | PIN_OUTPUT_##val))
/linux-4.1.27/drivers/media/usb/au0828/
Dau0828.h264 int alt; /* alternate */ member
/linux-4.1.27/Documentation/
DSAK.txt30 echo "control alt keycode 101 = SAK" | /bin/loadkeys
Dsysrq.txt179 That happens to me, also. I've found that tapping shift, alt, and control
181 will fix the problem. (i.e., something like alt-sysrq-z). Switching to another
238 to temporarily up the console loglevel using alt-sysrq-8 or:
/linux-4.1.27/drivers/media/usb/tm6000/
Dtm6000-cards.c1160 struct usb_host_interface *alt, in get_max_endpoint() argument
1174 tm_ep->bInterfaceNumber = alt->desc.bInterfaceNumber; in get_max_endpoint()
1175 tm_ep->bAlternateSetting = alt->desc.bAlternateSetting; in get_max_endpoint()
/linux-4.1.27/drivers/mfd/
Dasic3.c571 u8 alt, pin, dir, init, bank_num, bit_num; in asic3_gpio_probe() local
575 alt = ASIC3_CONFIG_GPIO_ALT(config); in asic3_gpio_probe()
582 alt_reg[bank_num] |= (alt << bit_num); in asic3_gpio_probe()
/linux-4.1.27/include/linux/usb/
Dcomposite.h211 unsigned interface, unsigned alt);
/linux-4.1.27/Documentation/scsi/
Dqlogicfas.txt26 can be a simple ctrl-alt-delete with a boot floppy, or by using
/linux-4.1.27/Documentation/usb/
Dgadget_hid.txt147 {.opt = "--left-alt", .val = 0x04},
148 {.opt = "--right-alt", .val = 0x40},
/linux-4.1.27/Documentation/sysctl/
Dkernel.txt31 - ctrl-alt-del
249 ctrl-alt-del:
251 When the value in this file is 0, ctrl-alt-del is trapped and
258 mode, the ctrl-alt-del is intercepted by the program before it
/linux-4.1.27/Documentation/crypto/
Ddescore-readme.txt103 (code from glad@daimi.aau.dk via alt.sources or comp.sources.misc)
118 (code obtained from aem@aber.ac.uk via alt.sources or comp.sources.misc)
/linux-4.1.27/fs/ubifs/
Dtnc.c1888 znode->alt = 1; in correct_parent_keys()
1943 znode->alt = 1; in insert_zbranch()
1989 if (znode->alt) in tnc_insert()
Dtnc_commit.c641 znode->alt = 0; in get_znodes_to_commit()
Dubifs.h785 int alt; member
/linux-4.1.27/fs/dlm/
Dlock.c2448 int8_t alt = 0, rqmode = lkb->lkb_rqmode; in can_be_granted() local
2489 alt = DLM_LOCK_PR; in can_be_granted()
2491 alt = DLM_LOCK_CW; in can_be_granted()
2493 if (alt) { in can_be_granted()
2494 lkb->lkb_rqmode = alt; in can_be_granted()
/linux-4.1.27/drivers/usb/host/
Dxhci.c4509 struct usb_host_interface *alt, in xhci_update_timeout_for_interface() argument
4515 for (j = 0; j < alt->desc.bNumEndpoints; j++) { in xhci_update_timeout_for_interface()
4517 &alt->endpoint[j].desc, state, timeout)) in xhci_update_timeout_for_interface()
/linux-4.1.27/Documentation/isdn/
DREADME33 de.alt.comm.isdn4linux
/linux-4.1.27/fs/btrfs/
Dextent-tree.c2586 int alt = 1; in find_middle() local
2608 if (alt) in find_middle()
2613 alt = 1 - alt; in find_middle()
/linux-4.1.27/drivers/staging/speakup/
Dspkguide.txt825 You can switch to a different console with the alt left and right
826 arrows, or you can switch to a specific console by typing alt and a
/linux-4.1.27/scripts/
Danalyze_suspend.py2040 tr.alt td {background-color:#EAF2D3;}\n\
/linux-4.1.27/Documentation/s390/
DDebugging390.txt809 Doing alt c (on my 3270 console at least ) clears the screen.