/kernel/linux/linux-5.10/net/wireless/ |
H A D | wext-compat.c | 1207 bool match = false; in cfg80211_wext_siwrate() local 1232 match = true; in cfg80211_wext_siwrate() 1237 match = true; in cfg80211_wext_siwrate() 1242 if (!match) in cfg80211_wext_siwrate()
|
/kernel/linux/linux-5.10/sound/soc/codecs/ |
H A D | wm8904.c | 1362 /* Closest match */ in wm8904_hw_params() 2200 const struct of_device_id *match; in wm8904_i2c_probe() local 2202 match = of_match_node(wm8904_of_match, i2c->dev.of_node); in wm8904_i2c_probe() 2203 if (match == NULL) in wm8904_i2c_probe() 2205 wm8904->devtype = (enum wm8904_type)match->data; in wm8904_i2c_probe()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/vc4/ |
H A D | vc4_dsi.c | 1537 const struct of_device_id *match; in vc4_dsi_bind() local 1541 match = of_match_device(vc4_dsi_dt_match, dev); in vc4_dsi_bind() 1542 if (!match) in vc4_dsi_bind() 1545 dsi->variant = match->data; in vc4_dsi_bind()
|
/kernel/linux/linux-5.10/drivers/regulator/ |
H A D | qcom_spmi-regulator.c | 2105 const struct of_device_id *match; in qcom_spmi_regulator_probe() local 2128 match = of_match_device(qcom_spmi_regulator_match, &pdev->dev); in qcom_spmi_regulator_probe() 2129 if (!match) in qcom_spmi_regulator_probe() 2140 for (reg = match->data; reg->name; reg++) { in qcom_spmi_regulator_probe()
|
/kernel/linux/linux-5.10/drivers/spi/ |
H A D | spi-pxa2xx.c | 1040 "DMA burst size reduced to match bits_per_word\n"); in pxa2xx_spi_transfer_one() 1369 "in setup: DMA burst size reduced to match bits_per_word\n"); in setup() 1583 const void *match; in pxa2xx_spi_init_pdata() local 1588 match = device_get_match_data(&pdev->dev); in pxa2xx_spi_init_pdata() 1589 if (match) in pxa2xx_spi_init_pdata() 1590 type = (enum pxa_ssp_type)match; in pxa2xx_spi_init_pdata() 1647 * to match what Linux expects. in pxa2xx_spi_fw_translate_cs()
|
/kernel/linux/linux-6.6/drivers/net/can/spi/mcp251xfd/ |
H A D | mcp251xfd-core.c | 1992 const void *match; in mcp251xfd_probe() local 2085 match = device_get_match_data(&spi->dev); in mcp251xfd_probe() 2086 if (match) in mcp251xfd_probe() 2087 priv->devtype_data = *(struct mcp251xfd_devtype_data *)match; in mcp251xfd_probe()
|
/kernel/linux/linux-6.6/drivers/tty/serial/ |
H A D | serial-tegra.c | 1028 * Set the Tx trigger to 16. This should match the DMA burst size that in tegra_uart_hw_init() 1562 dev_err(&pdev->dev, "Error: No device match found\n"); in tegra_uart_probe() 1659 const struct of_device_id *match = NULL; in tegra_uart_init() local 1664 match = of_match_node(tegra_uart_of_match, node); in tegra_uart_init() 1666 if (match) in tegra_uart_init() 1667 cdata = match->data; in tegra_uart_init()
|
/kernel/linux/linux-6.6/drivers/rtc/ |
H A D | rtc-ds1307.c | 746 "enabled=%d polarity=%d irq=%d match=%lu\n", __func__, in mcp794xx_read_alarm() 807 /* Set alarm match: second, minute, hour, day, date, month. */ in mcp794xx_set_alarm() 1719 const void *match; in ds1307_probe() local 1745 match = device_get_match_data(&client->dev); in ds1307_probe() 1746 if (match) { in ds1307_probe() 1747 ds1307->type = (uintptr_t)match; in ds1307_probe()
|
/kernel/linux/linux-6.6/drivers/s390/block/ |
H A D | dasd_3990_erp.c | 2494 * must match. 2503 * match 'boolean' for match found 2504 * returns 1 if match found, otherwise 0. 2517 /* one request has sense data, the other not -> no match, return 0 */ in dasd_3990_erp_error_match() 2526 return 1; /* match with ifcc*/ in dasd_3990_erp_error_match() 2534 return 0; /* sense doesn't match */ in dasd_3990_erp_error_match() 2537 return 1; /* match */ in dasd_3990_erp_error_match() 2562 int match = 0; /* 'boolean' for matching error found */ in dasd_3990_erp_in_erp() local 2570 match in dasd_3990_erp_in_erp() [all...] |
/kernel/linux/linux-6.6/drivers/spi/ |
H A D | spi-omap2-mcspi.c | 1433 const struct of_device_id *match; in omap2_mcspi_probe() local 1461 match = of_match_device(omap_mcspi_of_match, &pdev->dev); in omap2_mcspi_probe() 1462 if (match) { in omap2_mcspi_probe() 1464 pdata = match->data; in omap2_mcspi_probe()
|
/kernel/linux/linux-6.6/drivers/soc/ti/ |
H A D | knav_qmss_queue.c | 1757 const struct of_device_id *match; in knav_queue_probe() local 1773 match = of_match_device(of_match_ptr(keystone_qmss_of_match), dev); in knav_queue_probe() 1774 if (match && match->data) in knav_queue_probe()
|
/kernel/linux/linux-6.6/drivers/platform/surface/aggregator/ |
H A D | controller.c | 121 bool match = n->event.id.target_category == event->target_category; in ssam_event_matches_notifier() local 124 match &= n->event.reg.target_id == event->target_id; in ssam_event_matches_notifier() 127 match &= n->event.id.instance == event->instance_id; in ssam_event_matches_notifier() 129 return match; in ssam_event_matches_notifier() 2162 * one), check that the flags used for enabling match and warn about this if 2225 * Also checks if the flags used for disabling the event match the flags used
|
/kernel/linux/linux-6.6/drivers/usb/gadget/udc/ |
H A D | at91_udc.c | 526 /* initialize endpoint to match this descriptor */ in at91_ep_enable() 1773 const struct of_device_id *match; in at91udc_of_init() local 1791 match = of_match_node(at91_udc_dt_ids, np); in at91udc_of_init() 1792 if (match) in at91udc_of_init() 1793 udc->caps = match->data; in at91udc_of_init()
|
/kernel/linux/linux-6.6/drivers/thermal/tegra/ |
H A D | soctherm.c | 2079 const struct of_device_id *match; in tegra_soctherm_probe() local 2087 match = of_match_node(tegra_soctherm_of_match, pdev->dev.of_node); in tegra_soctherm_probe() 2088 if (!match) in tegra_soctherm_probe() 2091 soc = (struct tegra_soctherm_soc *)match->data; in tegra_soctherm_probe()
|
/kernel/linux/linux-6.6/drivers/regulator/ |
H A D | qcom_spmi-regulator.c | 2375 const struct of_device_id *match; in qcom_spmi_regulator_probe() local 2398 match = of_match_device(qcom_spmi_regulator_match, &pdev->dev); in qcom_spmi_regulator_probe() 2399 if (!match) in qcom_spmi_regulator_probe() 2410 for (reg = match->data; reg->name; reg++) { in qcom_spmi_regulator_probe()
|
/kernel/linux/linux-6.6/drivers/dma/ |
H A D | at_hdmac.c | 697 * to match the current descriptor. in atc_get_llis_residue() 1902 const struct of_device_id *match; in at_dma_get_driver_data() local 1903 match = of_match_node(atmel_dma_dt_ids, pdev->dev.of_node); in at_dma_get_driver_data() 1904 if (match == NULL) in at_dma_get_driver_data() 1906 return match->data; in at_dma_get_driver_data()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/smsc/ |
H A D | smc91x.c | 1893 netdev_warn(dev, "%s: IOADDR %p doesn't match configuration (%x).\n", in smc_probe() 2241 const struct of_device_id *match = NULL; in smc_drv_probe() local 2277 match = of_match_device(of_match_ptr(smc91x_match), &pdev->dev); in smc_drv_probe() 2278 if (match) { in smc_drv_probe() 2323 if (!pd && !match) { in smc_drv_probe()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/ti/icssg/ |
H A D | icssg_prueth.c | 1941 const struct of_device_id *match; in prueth_probe() local 1951 match = of_match_device(prueth_dt_match, dev); in prueth_probe() 1952 if (!match) in prueth_probe() 1961 prueth->pdata = *(const struct prueth_pdata *)match->data; in prueth_probe()
|
/kernel/linux/linux-6.6/drivers/media/platform/renesas/rcar-vin/ |
H A D | rcar-csi2.c | 950 static int rcsi2_wait_phy_start_v4h(struct rcar_csi2 *priv, u32 match) in rcsi2_wait_phy_start_v4h() argument 957 if ((status & match) == match) in rcsi2_wait_phy_start_v4h() 1277 pad = media_entity_get_fwnode_pad(&subdev->entity, asc->match.fwnode, in rcsi2_notify_bound()
|
/kernel/linux/linux-6.6/drivers/media/platform/microchip/ |
H A D | microchip-isc-base.c | 1730 pad = media_entity_get_fwnode_pad(&subdev->entity, asd->match.fwnode, in isc_async_bound() 1972 const struct of_device_id *match; in isc_mc_init() local 1990 match = of_match_node(isc->dev->driver->of_match_table, in isc_mc_init() 1995 strscpy(isc->mdev.model, match->compatible, sizeof(isc->mdev.model)); in isc_mc_init()
|
/kernel/linux/linux-6.6/drivers/pinctrl/nomadik/ |
H A D | pinctrl-nomadik.c | 1843 const struct of_device_id *match; in nmk_pinctrl_probe() local 1854 match = of_match_device(nmk_pinctrl_match, &pdev->dev); in nmk_pinctrl_probe() 1855 if (!match) in nmk_pinctrl_probe() 1857 version = (unsigned int) match->data; in nmk_pinctrl_probe()
|
/kernel/linux/linux-6.6/drivers/pinctrl/ |
H A D | pinctrl-xway.c | 1454 const struct of_device_id *match; in pinmux_xway_probe() local 1463 match = of_match_device(xway_match, &pdev->dev); in pinmux_xway_probe() 1464 if (match) in pinmux_xway_probe() 1465 xway_soc = (const struct pinctrl_xway_soc *) match->data; in pinmux_xway_probe()
|
/kernel/linux/linux-6.6/drivers/i2c/busses/ |
H A D | i2c-imx.c | 1456 const struct imx_i2c_hwdata *match; in i2c_imx_probe() local 1475 match = device_get_match_data(&pdev->dev); in i2c_imx_probe() 1476 if (match) in i2c_imx_probe() 1477 i2c_imx->hwdata = match; in i2c_imx_probe()
|
/kernel/linux/linux-6.6/net/wireless/ |
H A D | wext-compat.c | 1278 bool match = false; in cfg80211_wext_siwrate() local 1303 match = true; in cfg80211_wext_siwrate() 1308 match = true; in cfg80211_wext_siwrate() 1313 if (!match) in cfg80211_wext_siwrate()
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/ |
H A D | test_offload.py | 433 match = nsimnamere.match(ifname) 434 if match and int(match.groups()[0]) != port_index + 1: 943 fail(str(prog["id"]) != fltr["id"], "Program IDs don't match") 944 fail(prog["tag"] != fltr["tag"], "Program tags don't match") 945 fail(fltr["id"] != dprog["id"], "Program IDs don't match") 1067 fail(prog["id"] != link_xdp["id"], "Program IDs don't match") 1068 fail(prog["tag"] != link_xdp["tag"], "Program tags don't match") 1069 fail(str(link_xdp["id"]) != dprog["id"], "Program IDs don't match") [all...] |