Symbol: add_config
drivers/pinctrl/pinctrl-single.c
889
add_config(conf, param, value[0], 0, 0, value[1]);
drivers/pinctrl/pinctrl-single.c
915
add_config(conf, param, value[0], value[1], value[2], value[3]);
drivers/pinctrl/samsung/pinctrl-samsung.c
197
ret = add_config(dev, &configs, &num_configs, config);
drivers/vdpa/mlx5/net/mlx5_vnet.c
3831
const struct vdpa_dev_set_config *add_config)
drivers/vdpa/mlx5/net/mlx5_vnet.c
3849
if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_FEATURES)) {
drivers/vdpa/mlx5/net/mlx5_vnet.c
3850
if (add_config->device_features & ~device_features) {
drivers/vdpa/mlx5/net/mlx5_vnet.c
3853
add_config->device_features, device_features);
drivers/vdpa/mlx5/net/mlx5_vnet.c
3856
device_features &= add_config->device_features;
drivers/vdpa/mlx5/net/mlx5_vnet.c
3883
if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MAX_VQP)) {
drivers/vdpa/mlx5/net/mlx5_vnet.c
3884
if (add_config->net.max_vq_pairs > max_vqs / 2)
drivers/vdpa/mlx5/net/mlx5_vnet.c
3886
max_vqs = min_t(u32, max_vqs, 2 * add_config->net.max_vq_pairs);
drivers/vdpa/mlx5/net/mlx5_vnet.c
3918
if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MTU)) {
drivers/vdpa/mlx5/net/mlx5_vnet.c
3919
err = config_func_mtu(mdev, add_config->net.mtu);
drivers/vdpa/mlx5/net/mlx5_vnet.c
3939
if (add_config->mask & (1 << VDPA_ATTR_DEV_NET_CFG_MACADDR)) {
drivers/vdpa/mlx5/net/mlx5_vnet.c
3940
memcpy(ndev->config.mac, add_config->net.mac, ETH_ALEN);
drivers/vdpa/mlx5/net/mlx5_vnet.c
3942
} else if ((add_config->mask & BIT_ULL(VDPA_ATTR_DEV_FEATURES)) == 0 ||
drivers/vdpa/mlx5/net/mlx5_vnet.c
3954
} else if ((add_config->mask & BIT_ULL(VDPA_ATTR_DEV_FEATURES)) == 0) {
drivers/vdpa/mlx5/net/mlx5_vnet.c
4054
const struct vdpa_dev_set_config *add_config)
drivers/vdpa/mlx5/net/mlx5_vnet.c
4068
if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MACADDR)) {
drivers/vdpa/mlx5/net/mlx5_vnet.c
4078
(u8 *)add_config->net.mac);
drivers/vdpa/pds/vdpa_dev.c
612
const struct vdpa_dev_set_config *add_config)
drivers/vdpa/pds/vdpa_dev.c
658
if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_FEATURES)) {
drivers/vdpa/pds/vdpa_dev.c
660
add_config->device_features & ~pdsv->supported_features;
drivers/vdpa/pds/vdpa_dev.c
668
pdsv->supported_features = add_config->device_features;
drivers/vdpa/pds/vdpa_dev.c
687
if (add_config->mask & (1 << VDPA_ATTR_DEV_NET_CFG_MAX_VQP))
drivers/vdpa/pds/vdpa_dev.c
688
vq_pairs = add_config->net.max_vq_pairs;
drivers/vdpa/pds/vdpa_dev.c
714
if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MACADDR)) {
drivers/vdpa/pds/vdpa_dev.c
715
ether_addr_copy(pdsv->mac, add_config->net.mac);
drivers/vdpa/virtio_pci/vp_vdpa.c
501
const struct vdpa_dev_set_config *add_config)
drivers/vdpa/virtio_pci/vp_vdpa.c
529
if (add_config->mask & BIT_ULL(VDPA_ATTR_DEV_FEATURES)) {
drivers/vdpa/virtio_pci/vp_vdpa.c
530
if (add_config->device_features & ~device_features) {
drivers/vdpa/virtio_pci/vp_vdpa.c
535
device_features, add_config->device_features);
drivers/vdpa/virtio_pci/vp_vdpa.c
538
device_features = add_config->device_features;