/linux-4.4.14/drivers/spi/ |
D | spi-sh.c | 162 static int spi_sh_send(struct spi_sh_data *ss, struct spi_message *mesg, in spi_sh_send() argument 209 if (list_is_last(&t->transfer_list, &mesg->transfers)) { in spi_sh_send() 227 static int spi_sh_receive(struct spi_sh_data *ss, struct spi_message *mesg, in spi_sh_receive() argument 286 struct spi_message *mesg; in spi_sh_work() local 295 mesg = list_entry(ss->queue.next, struct spi_message, queue); in spi_sh_work() 296 list_del_init(&mesg->queue); in spi_sh_work() 299 list_for_each_entry(t, &mesg->transfers, transfer_list) { in spi_sh_work() 306 ret = spi_sh_send(ss, mesg, t); in spi_sh_work() 311 ret = spi_sh_receive(ss, mesg, t); in spi_sh_work() 315 mesg->actual_length += t->len; in spi_sh_work() [all …]
|
D | spi.c | 1246 struct spi_message *mesg; in spi_finalize_current_message() local 1251 mesg = master->cur_msg; in spi_finalize_current_message() 1254 spi_unmap_msg(master, mesg); in spi_finalize_current_message() 1257 ret = master->unprepare_message(master, mesg); in spi_finalize_current_message() 1270 trace_spi_message_done(mesg); in spi_finalize_current_message() 1272 mesg->state = NULL; in spi_finalize_current_message() 1273 if (mesg->complete) in spi_finalize_current_message() 1274 mesg->complete(mesg->context); in spi_finalize_current_message()
|
/linux-4.4.14/fs/nfsd/ |
D | nfsctl.c | 354 char *mesg = buf; in write_filehandle() local 366 dname = mesg; in write_filehandle() 367 len = qword_get(&mesg, dname, size); in write_filehandle() 372 len = qword_get(&mesg, path, size); in write_filehandle() 376 len = get_int(&mesg, &maxsize); in write_filehandle() 384 if (qword_get(&mesg, mesg, size)>0) in write_filehandle() 397 mesg = buf; in write_filehandle() 399 qword_addhex(&mesg, &len, (char*)&fh.fh_base, fh.fh_size); in write_filehandle() 400 mesg[-1] = '\n'; in write_filehandle() 401 return mesg - buf; in write_filehandle() [all …]
|
D | export.c | 70 static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen) in expkey_parse() argument 82 if (mesg[mlen - 1] != '\n') in expkey_parse() 84 mesg[mlen-1] = 0; in expkey_parse() 92 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0) in expkey_parse() 102 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0) in expkey_parse() 110 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0) in expkey_parse() 118 key.h.expiry_time = get_expiry(&mesg); in expkey_parse() 133 len = qword_get(&mesg, buf, PAGE_SIZE); in expkey_parse() 388 fsloc_parse(char **mesg, char *buf, struct nfsd4_fs_locations *fsloc) in fsloc_parse() argument 398 err = get_uint(mesg, &fsloc->locations_count); in fsloc_parse() [all …]
|
/linux-4.4.14/drivers/isdn/sc/ |
D | message.h | 38 #define IS_CM_MESSAGE(mesg, tx, cx, dx) \ argument 39 ((mesg.type == cmRspType##tx) \ 40 && (mesg.class == cmRspClass##cx) \ 41 && (mesg.code == cmRsp##dx)) 46 #define IS_CE_MESSAGE(mesg, tx, cx, dx) \ argument 47 ((mesg.type == ceRspType##tx) \ 48 && (mesg.class == ceRspClass##cx) \ 49 && (mesg.code == ceRsp##tx##dx))
|
/linux-4.4.14/net/atm/ |
D | lec.c | 139 struct atmlec_msg *mesg; in lec_handle_bridge() local 145 mesg = (struct atmlec_msg *)skb2->data; in lec_handle_bridge() 146 mesg->type = l_topology_change; in lec_handle_bridge() 148 mesg->content.normal.flag = *buff & 0x01; in lec_handle_bridge() 343 struct atmlec_msg *mesg; in lec_atm_send() local 349 mesg = (struct atmlec_msg *)skb->data; in lec_atm_send() 352 pr_debug("%s: msg from zeppelin:%d\n", dev->name, mesg->type); in lec_atm_send() 353 switch (mesg->type) { in lec_atm_send() 356 dev->dev_addr[i] = mesg->content.normal.mac_addr[i]; in lec_atm_send() 363 lec_addr_delete(priv, mesg->content.normal.atm_addr, in lec_atm_send() [all …]
|
D | mpc.c | 77 static void set_mpc_ctrl_addr_rcvd(struct k_message *mesg, 79 static void set_mps_mac_addr_rcvd(struct k_message *mesg, 861 struct k_message mesg; in send_set_mps_ctrl_addr() local 865 mesg.type = SET_MPS_CTRL_ADDR; in send_set_mps_ctrl_addr() 866 memcpy(mesg.MPS_ctrl, addr, ATM_ESA_LEN); in send_set_mps_ctrl_addr() 867 msg_to_mpoad(&mesg, mpc); in send_set_mps_ctrl_addr() 913 struct k_message *mesg = (struct k_message *)skb->data; in msg_from_mpoad() local 921 switch (mesg->type) { in msg_from_mpoad() 924 MPOA_res_reply_rcvd(mesg, mpc); in msg_from_mpoad() 928 MPOA_trigger_rcvd(mesg, mpc); in msg_from_mpoad() [all …]
|
/linux-4.4.14/net/sunrpc/ |
D | svcauth_unix.c | 164 char *mesg, int mlen) in ip_map_parse() argument 169 char *buf = mesg; in ip_map_parse() 184 if (mesg[mlen-1] != '\n') in ip_map_parse() 186 mesg[mlen-1] = 0; in ip_map_parse() 189 len = qword_get(&mesg, class, sizeof(class)); in ip_map_parse() 193 len = qword_get(&mesg, buf, mlen); in ip_map_parse() 214 expiry = get_expiry(&mesg); in ip_map_parse() 219 len = qword_get(&mesg, buf, mlen); in ip_map_parse() 476 char *mesg, int mlen) in unix_gid_parse() argument 488 if (mesg[mlen - 1] != '\n') in unix_gid_parse() [all …]
|
/linux-4.4.14/drivers/misc/sgi-gru/ |
D | grukservices.c | 592 void *mesg) in send_noop_message() argument 598 struct message_header save_mhdr, *mhdr = mesg; in send_noop_message() 628 gru_vstore(cb, m, gru_get_tri(mesg), XTYPE_CL, 1, 1, in send_noop_message() 650 void *mesg, int lines) in send_message_queue_full() argument 681 if (send_noop_message(cb, mqd, mesg)) { in send_message_queue_full() 719 void *mesg, int lines) in send_message_put_nacked() argument 721 unsigned long m, *val = mesg, gpa, save; in send_message_put_nacked() 730 gru_vstore(cb, m, gru_get_tri(mesg), XTYPE_CL, lines, 1, IMA); in send_message_put_nacked() 748 gru_vstore_phys(cb, gpa, gru_get_tri(mesg), IAA_REGISTER, IMA); in send_message_put_nacked() 761 void *mesg, int lines) in send_message_failure() argument [all …]
|
D | grukservices.h | 95 void *mesg, unsigned int bytes);
|
/linux-4.4.14/net/netfilter/ipvs/ |
D | ip_vs_sync.c | 275 struct ip_vs_sync_mesg *mesg; member 337 sb->mesg = kmalloc(len, GFP_ATOMIC); in ip_vs_sync_buff_create() 338 if (!sb->mesg) { in ip_vs_sync_buff_create() 342 sb->mesg->reserved = 0; /* old nr_conns i.e. must be zero now */ in ip_vs_sync_buff_create() 343 sb->mesg->version = SYNC_PROTO_VER; in ip_vs_sync_buff_create() 344 sb->mesg->syncid = ipvs->mcfg.syncid; in ip_vs_sync_buff_create() 345 sb->mesg->size = htons(sizeof(struct ip_vs_sync_mesg)); in ip_vs_sync_buff_create() 346 sb->mesg->nr_conns = 0; in ip_vs_sync_buff_create() 347 sb->mesg->spare = 0; in ip_vs_sync_buff_create() 348 sb->head = (unsigned char *)sb->mesg + sizeof(struct ip_vs_sync_mesg); in ip_vs_sync_buff_create() [all …]
|
/linux-4.4.14/drivers/ide/ |
D | ide-pm.c | 5 int generic_ide_suspend(struct device *dev, pm_message_t mesg) in generic_ide_suspend() argument 25 if (mesg.event == PM_EVENT_PRETHAW) in generic_ide_suspend() 26 mesg.event = PM_EVENT_FREEZE; in generic_ide_suspend() 27 rqpm.pm_state = mesg.event; in generic_ide_suspend()
|
D | pmac.c | 1222 pmac_ide_macio_suspend(struct macio_dev *mdev, pm_message_t mesg) in pmac_ide_macio_suspend() argument 1227 if (mesg.event != mdev->ofdev.dev.power.power_state.event in pmac_ide_macio_suspend() 1228 && (mesg.event & PM_EVENT_SLEEP)) { in pmac_ide_macio_suspend() 1231 mdev->ofdev.dev.power.power_state = mesg; in pmac_ide_macio_suspend() 1325 pmac_ide_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) in pmac_ide_pci_suspend() argument 1330 if (mesg.event != pdev->dev.power.power_state.event in pmac_ide_pci_suspend() 1331 && (mesg.event & PM_EVENT_SLEEP)) { in pmac_ide_pci_suspend() 1334 pdev->dev.power.power_state = mesg; in pmac_ide_pci_suspend()
|
/linux-4.4.14/net/sunrpc/auth_gss/ |
D | svcauth_gss.c | 186 char *mesg, int mlen) in rsi_parse() argument 189 char *buf = mesg; in rsi_parse() 198 len = qword_get(&mesg, buf, mlen); in rsi_parse() 206 len = qword_get(&mesg, buf, mlen); in rsi_parse() 220 expiry = get_expiry(&mesg); in rsi_parse() 226 len = qword_get(&mesg, buf, mlen); in rsi_parse() 232 len = qword_get(&mesg, buf, mlen); in rsi_parse() 240 len = qword_get(&mesg, buf, mlen); in rsi_parse() 248 len = qword_get(&mesg, buf, mlen); in rsi_parse() 408 char *mesg, int mlen) in rsc_parse() argument [all …]
|
/linux-4.4.14/drivers/ata/ |
D | acard-ahci.c | 81 static int acard_ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg); 128 static int acard_ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg) in acard_ahci_pci_device_suspend() argument 135 if (mesg.event & PM_EVENT_SUSPEND && in acard_ahci_pci_device_suspend() 142 if (mesg.event & PM_EVENT_SLEEP) { in acard_ahci_pci_device_suspend() 153 return ata_pci_device_suspend(pdev, mesg); in acard_ahci_pci_device_suspend()
|
D | pata_triflex.c | 211 static int triflex_ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg) in triflex_ata_pci_device_suspend() argument 216 rc = ata_host_suspend(host, mesg); in triflex_ata_pci_device_suspend()
|
D | pata_cs5520.c | 269 static int cs5520_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg) in cs5520_pci_device_suspend() argument 274 rc = ata_host_suspend(host, mesg); in cs5520_pci_device_suspend()
|
D | pata_macio.c | 849 static int pata_macio_do_suspend(struct pata_macio_priv *priv, pm_message_t mesg) in pata_macio_do_suspend() argument 854 rc = ata_host_suspend(priv->host, mesg); in pata_macio_do_suspend() 1210 static int pata_macio_suspend(struct macio_dev *mdev, pm_message_t mesg) in pata_macio_suspend() argument 1214 return pata_macio_do_suspend(host->private_data, mesg); in pata_macio_suspend() 1316 static int pata_macio_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) in pata_macio_pci_suspend() argument 1320 return pata_macio_do_suspend(host->private_data, mesg); in pata_macio_pci_suspend()
|
D | libata-core.c | 5309 static void ata_port_request_pm(struct ata_port *ap, pm_message_t mesg, in ata_port_request_pm() argument 5327 ap->pm_mesg = mesg; in ata_port_request_pm() 5355 static void ata_port_suspend(struct ata_port *ap, pm_message_t mesg) in ata_port_suspend() argument 5357 ata_port_request_pm(ap, mesg, 0, ata_port_suspend_ehi, false); in ata_port_suspend() 5360 static void ata_port_suspend_async(struct ata_port *ap, pm_message_t mesg) in ata_port_suspend_async() argument 5362 ata_port_request_pm(ap, mesg, 0, ata_port_suspend_ehi, true); in ata_port_suspend_async() 5396 static void ata_port_resume(struct ata_port *ap, pm_message_t mesg) in ata_port_resume() argument 5398 ata_port_request_pm(ap, mesg, ATA_EH_RESET, ata_port_resume_ehi, false); in ata_port_resume() 5401 static void ata_port_resume_async(struct ata_port *ap, pm_message_t mesg) in ata_port_resume_async() argument 5403 ata_port_request_pm(ap, mesg, ATA_EH_RESET, ata_port_resume_ehi, true); in ata_port_resume_async() [all …]
|
D | ahci.c | 97 static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg); 804 static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg) in ahci_pci_device_suspend() argument 811 if (mesg.event & PM_EVENT_SUSPEND && in ahci_pci_device_suspend() 818 if (mesg.event & PM_EVENT_SLEEP) { in ahci_pci_device_suspend() 829 return ata_pci_device_suspend(pdev, mesg); in ahci_pci_device_suspend()
|
D | ata_piix.c | 1004 static int piix_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg) in piix_pci_device_suspend() argument 1010 rc = ata_host_suspend(host, mesg); in piix_pci_device_suspend() 1019 if (piix_broken_suspend() && (mesg.event & PM_EVENT_SLEEP)) { in piix_pci_device_suspend() 1034 ata_pci_device_do_suspend(pdev, mesg); in piix_pci_device_suspend()
|
D | sata_nv.c | 323 static int nv_adma_port_suspend(struct ata_port *ap, pm_message_t mesg); 344 static int nv_swncq_port_suspend(struct ata_port *ap, pm_message_t mesg); 1230 static int nv_adma_port_suspend(struct ata_port *ap, pm_message_t mesg) in nv_adma_port_suspend() argument 1852 static int nv_swncq_port_suspend(struct ata_port *ap, pm_message_t mesg) in nv_swncq_port_suspend() argument
|
D | libahci.c | 93 static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg); 2259 static int ahci_port_suspend(struct ata_port *ap, pm_message_t mesg) in ahci_port_suspend() argument
|
/linux-4.4.14/drivers/video/fbdev/omap/ |
D | lcd_inn1510.c | 92 pm_message_t mesg) in innovator1510_panel_suspend() argument
|
D | lcd_htcherald.c | 97 pm_message_t mesg) in htcherald_panel_suspend() argument
|
D | lcd_palmz71.c | 91 pm_message_t mesg) in palmz71_panel_suspend() argument
|
D | lcd_palmtt.c | 95 static int palmtt_panel_suspend(struct platform_device *pdev, pm_message_t mesg) in palmtt_panel_suspend() argument
|
D | lcd_palmte.c | 89 static int palmte_panel_suspend(struct platform_device *pdev, pm_message_t mesg) in palmte_panel_suspend() argument
|
D | lcd_osk.c | 112 static int osk_panel_suspend(struct platform_device *pdev, pm_message_t mesg) in osk_panel_suspend() argument
|
D | lcd_inn1610.c | 113 pm_message_t mesg) in innovator1610_panel_suspend() argument
|
D | lcd_h3.c | 106 static int h3_panel_suspend(struct platform_device *pdev, pm_message_t mesg) in h3_panel_suspend() argument
|
D | lcd_ams_delta.c | 204 pm_message_t mesg) in ams_delta_panel_suspend() argument
|
D | omapfb_main.c | 1841 static int omapfb_suspend(struct platform_device *pdev, pm_message_t mesg) in omapfb_suspend() argument
|
/linux-4.4.14/drivers/staging/sm750fb/ |
D | sm750.c | 394 static int lynxfb_suspend(struct pci_dev *pdev, pm_message_t mesg) in lynxfb_suspend() argument 400 if (mesg.event == pdev->dev.power.power_state.event) in lynxfb_suspend() 405 switch (mesg.event) { in lynxfb_suspend() 408 pdev->dev.power.power_state = mesg; in lynxfb_suspend() 413 if (mesg.event & PM_EVENT_SLEEP) { in lynxfb_suspend() 430 ret = pci_set_power_state(pdev, pci_choose_state(pdev, mesg)); in lynxfb_suspend() 437 pdev->dev.power.power_state = mesg; in lynxfb_suspend()
|
/linux-4.4.14/drivers/scsi/aic7xxx/ |
D | aic79xx_osm_pci.c | 79 ahd_linux_pci_dev_suspend(struct pci_dev *pdev, pm_message_t mesg) in ahd_linux_pci_dev_suspend() argument 92 if (mesg.event & PM_EVENT_SLEEP) in ahd_linux_pci_dev_suspend()
|
D | aic7xxx_osm_pci.c | 126 ahc_linux_pci_dev_suspend(struct pci_dev *pdev, pm_message_t mesg) in ahc_linux_pci_dev_suspend() argument 137 if (mesg.event & PM_EVENT_SLEEP) in ahc_linux_pci_dev_suspend()
|
/linux-4.4.14/drivers/video/fbdev/nvidia/ |
D | nvidia.c | 1044 static int nvidiafb_suspend(struct pci_dev *dev, pm_message_t mesg) in nvidiafb_suspend() argument 1049 if (mesg.event == PM_EVENT_PRETHAW) in nvidiafb_suspend() 1050 mesg.event = PM_EVENT_FREEZE; in nvidiafb_suspend() 1052 par->pm_state = mesg.event; in nvidiafb_suspend() 1054 if (mesg.event & PM_EVENT_SLEEP) { in nvidiafb_suspend() 1060 pci_set_power_state(dev, pci_choose_state(dev, mesg)); in nvidiafb_suspend() 1062 dev->dev.power.power_state = mesg; in nvidiafb_suspend()
|
/linux-4.4.14/drivers/video/fbdev/ |
D | fb-puv3.c | 771 static int unifb_suspend(struct platform_device *dev, pm_message_t mesg) in unifb_suspend() argument 786 if (mesg.event == dev->dev.power.power_state.event) in unifb_suspend() 789 switch (mesg.event) { in unifb_suspend() 802 dev->dev.power.power_state = mesg; in unifb_suspend()
|
D | atmel_lcdfb.c | 1419 static int atmel_lcdfb_suspend(struct platform_device *pdev, pm_message_t mesg) in atmel_lcdfb_suspend() argument
|
/linux-4.4.14/include/linux/spi/ |
D | spi.h | 463 struct spi_message *mesg); 504 struct spi_message *mesg);
|
/linux-4.4.14/drivers/scsi/ |
D | wd7000.c | 607 static void __init setup_error(char *mesg, int *ints) in setup_error() argument 610 printk(KERN_ERR "wd7000_setup: \"wd7000=%d,%d,0x%x\" -> %s\n", ints[1], ints[2], ints[3], mesg); in setup_error() 612 …RN_ERR "wd7000_setup: \"wd7000=%d,%d,0x%x,%d\" -> %s\n", ints[1], ints[2], ints[3], ints[4], mesg); in setup_error() 614 …00_setup: \"wd7000=%d,%d,0x%x,%d,%d\" -> %s\n", ints[1], ints[2], ints[3], ints[4], ints[5], mesg); in setup_error()
|
D | mesh.c | 1754 static int mesh_suspend(struct macio_dev *mdev, pm_message_t mesg) in mesh_suspend() argument 1759 switch (mesg.event) { in mesh_suspend()
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | ibmebus.c | 419 static int ibmebus_bus_legacy_suspend(struct device *dev, pm_message_t mesg) in ibmebus_bus_legacy_suspend() argument 426 ret = drv->suspend(of_dev, mesg); in ibmebus_bus_legacy_suspend()
|
/linux-4.4.14/drivers/video/fbdev/savage/ |
D | savagefb_driver.c | 2357 static int savagefb_suspend(struct pci_dev *dev, pm_message_t mesg) in savagefb_suspend() argument 2364 if (mesg.event == PM_EVENT_PRETHAW) in savagefb_suspend() 2365 mesg.event = PM_EVENT_FREEZE; in savagefb_suspend() 2366 par->pm_state = mesg.event; in savagefb_suspend() 2367 dev->dev.power.power_state = mesg; in savagefb_suspend() 2373 if (mesg.event == PM_EVENT_FREEZE) in savagefb_suspend() 2387 pci_set_power_state(dev, pci_choose_state(dev, mesg)); in savagefb_suspend()
|
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/ |
D | qlcnic_minidump.c | 1298 char mesg[64]; in qlcnic_dump_fw() local 1299 char *msg[] = {mesg, NULL}; in qlcnic_dump_fw() 1389 snprintf(mesg, sizeof(mesg), "FW_DUMP=%s", adapter->netdev->name); in qlcnic_dump_fw()
|
/linux-4.4.14/include/linux/ |
D | libata.h | 942 int (*port_suspend)(struct ata_port *ap, pm_message_t mesg); 1158 extern int ata_host_suspend(struct ata_host *host, pm_message_t mesg); 1250 extern void ata_pci_device_do_suspend(struct pci_dev *pdev, pm_message_t mesg); 1252 extern int ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg);
|
/linux-4.4.14/drivers/pcmcia/ |
D | at91_cf.c | 373 static int at91_cf_suspend(struct platform_device *pdev, pm_message_t mesg) in at91_cf_suspend() argument
|
/linux-4.4.14/drivers/video/fbdev/i810/ |
D | i810_main.c | 1564 static int i810fb_suspend(struct pci_dev *dev, pm_message_t mesg) in i810fb_suspend() argument 1569 par->cur_state = mesg.event; in i810fb_suspend() 1571 switch (mesg.event) { in i810fb_suspend() 1574 dev->dev.power.power_state = mesg; in i810fb_suspend() 1590 pci_set_power_state(dev, pci_choose_state(dev, mesg)); in i810fb_suspend()
|
/linux-4.4.14/drivers/base/ |
D | platform.c | 925 static int platform_legacy_suspend(struct device *dev, pm_message_t mesg) in platform_legacy_suspend() argument 932 ret = pdrv->suspend(pdev, mesg); in platform_legacy_suspend()
|
/linux-4.4.14/drivers/video/fbdev/aty/ |
D | radeon_pm.c | 2612 int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) in radeonfb_pci_suspend() argument 2617 if (mesg.event == pdev->dev.power.power_state.event) in radeonfb_pci_suspend() 2621 pci_name(pdev), mesg.event); in radeonfb_pci_suspend() 2628 switch (mesg.event) { in radeonfb_pci_suspend() 2701 pdev->dev.power.power_state = mesg; in radeonfb_pci_suspend()
|
/linux-4.4.14/drivers/i2c/busses/ |
D | i2c-i801.c | 1436 static int i801_suspend(struct pci_dev *dev, pm_message_t mesg) in i801_suspend() argument 1442 pci_set_power_state(dev, pci_choose_state(dev, mesg)); in i801_suspend()
|
/linux-4.4.14/drivers/net/can/ |
D | bfin_can.c | 729 static int bfin_can_suspend(struct platform_device *pdev, pm_message_t mesg) in bfin_can_suspend() argument
|
/linux-4.4.14/drivers/net/ethernet/adi/ |
D | bfin_mac.c | 1768 static int bfin_mac_suspend(struct platform_device *pdev, pm_message_t mesg) in bfin_mac_suspend() argument
|
/linux-4.4.14/drivers/usb/gadget/udc/ |
D | at91_udc.c | 1990 static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg) in at91udc_suspend() argument
|
D | lpc32xx_udc.c | 3366 static int lpc32xx_udc_suspend(struct platform_device *pdev, pm_message_t mesg) in lpc32xx_udc_suspend() argument
|
/linux-4.4.14/Documentation/spi/ |
D | spi-summary | 540 struct spi_message *mesg)
|
/linux-4.4.14/arch/mips/ |
D | Kconfig | 617 …# See http://www.linux-mips.org/cgi-bin/mesg.cgi?a=linux-mips&i=20091119164009.GA15038%40deprecati… 677 …# See http://www.linux-mips.org/cgi-bin/mesg.cgi?a=linux-mips&i=20091119164009.GA15038%40deprecati…
|
/linux-4.4.14/drivers/block/mtip32xx/ |
D | mtip32xx.c | 4642 static int mtip_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) in mtip_pci_suspend() argument
|