/kernel/linux/linux-5.10/scripts/dtc/ |
D | dt_to_config | 324 my $compat = $pn_arg_ref->{compat}; 370 if (exists($driver_hard_code_list{$compat}) || 437 my $compat = $pn_arg_ref->{compat}; 460 print " : $compat : $driver : $config : "; 737 my $compat; 759 for $compat (@compatibles) { 761 $pn_arg{compat} = $compat; 765 if (exists($compat_white_list{$compat})) { 776 if (exists($compat_driver{$compat})) { 777 for my $driver (@{ $compat_driver{$compat} }) { [all …]
|
/kernel/linux/linux-5.10/arch/x86/entry/syscalls/ |
D | syscalltbl.sh | 19 local compat="$4" 21 if [ "$abi" != "I386" -a -n "$compat" ]; then 22 echo "a compat entry ($abi: $compat) for a 64-bit syscall makes no sense" >&2 26 if [ -z "$compat" ]; then 36 syscall_macro "$abi" "$nr" "$compat" 42 while read nr abi name entry compat; do 44 emit "$abi" "$nr" "$entry" "$compat"
|
/kernel/linux/linux-5.10/drivers/firmware/efi/ |
D | efivars.c | 213 struct compat_efi_variable *compat; in efivar_store_raw() local 215 if (count != sizeof(*compat)) in efivar_store_raw() 218 compat = (struct compat_efi_variable *)buf; in efivar_store_raw() 219 attributes = compat->Attributes; in efivar_store_raw() 220 vendor = compat->VendorGuid; in efivar_store_raw() 221 name = compat->VariableName; in efivar_store_raw() 222 size = compat->DataSize; in efivar_store_raw() 223 data = compat->Data; in efivar_store_raw() 229 copy_out_compat(&entry->var, compat); in efivar_store_raw() 262 struct compat_efi_variable *compat; in efivar_show_raw() local [all …]
|
/kernel/linux/linux-5.10/drivers/vfio/platform/ |
D | vfio_platform_private.h | 52 const char *compat; member 76 char *compat; member 95 extern void vfio_platform_unregister_reset(const char *compat, 100 .compat = __compat, \ 105 #define module_vfio_reset_handler(compat, reset) \ argument 106 MODULE_ALIAS("vfio-reset:" compat); \ 109 vfio_platform_register_reset(compat, reset); \ 114 vfio_platform_unregister_reset(compat, reset); \
|
/kernel/linux/linux-5.10/arch/sparc/kernel/ |
D | vio.c | 26 const char *type, *compat; in vio_match_device() local 30 compat = dev->compat; in vio_match_device() 33 while (matches->type[0] || matches->compat[0]) { in vio_match_device() 38 if (matches->compat[0]) { in vio_match_device() 40 of_find_in_proplist(compat, matches->compat, len); in vio_match_device() 53 add_uevent_var(env, "MODALIAS=vio:T%sS%s", vio_dev->type, vio_dev->compat); in vio_hotplug() 142 return sprintf(buf, "vio:T%sS%s\n", vdev->type, vdev->compat); in modalias_show() 296 const char *type, *compat; in vio_create_one() local 320 compat = mdesc_get_property(hp, mp, "device-type", &clen); in vio_create_one() 321 if (!compat) { in vio_create_one() [all …]
|
/kernel/linux/linux-5.10/drivers/macintosh/ |
D | macio_sysfs.c | 10 const char *compat; in compatible_show() local 15 compat = of_get_property(of->dev.of_node, "compatible", &cplen); in compatible_show() 16 if (!compat) { in compatible_show() 22 length += sprintf (buf, "%s\n", compat); in compatible_show() 24 l = strlen (compat) + 1; in compatible_show() 25 compat += l; in compatible_show()
|
/kernel/linux/linux-5.10/net/xfrm/ |
D | xfrm_algo.c | 196 .compat = "md5", 216 .compat = "sha1", 236 .compat = "sha256", 294 .compat = "rmd160", 349 .compat = "cipher_null", 369 .compat = "des", 390 .compat = "des3_ede", 411 .compat = "cast5", 432 .compat = "blowfish", 453 .compat = "aes", [all …]
|
/kernel/linux/linux-5.10/arch/arm/tools/ |
D | syscalltbl.sh | 8 while read nr abi name entry compat; do 9 if [ "$abi" = "eabi" -a -n "$compat" ]; then 15 if [ -z "$compat" ]; then 18 echo "COMPAT($nr, $entry, $compat)"
|
/kernel/linux/linux-5.10/net/mac80211/ |
D | chan.c | 84 const struct cfg80211_chan_def *compat) in ieee80211_chanctx_reserved_chandef() argument 92 if (!compat) in ieee80211_chanctx_reserved_chandef() 93 compat = &sdata->reserved_chandef; in ieee80211_chanctx_reserved_chandef() 95 compat = cfg80211_chandef_compatible(&sdata->reserved_chandef, in ieee80211_chanctx_reserved_chandef() 96 compat); in ieee80211_chanctx_reserved_chandef() 97 if (!compat) in ieee80211_chanctx_reserved_chandef() 101 return compat; in ieee80211_chanctx_reserved_chandef() 107 const struct cfg80211_chan_def *compat) in ieee80211_chanctx_non_reserved_chandef() argument 118 if (!compat) in ieee80211_chanctx_non_reserved_chandef() 119 compat = &sdata->vif.bss_conf.chandef; in ieee80211_chanctx_non_reserved_chandef() [all …]
|
/kernel/linux/linux-5.10/include/linux/ |
D | irqchip.h | 29 #define IRQCHIP_DECLARE(name, compat, fn) OF_DECLARE_2(irqchip, name, compat, fn) argument 36 #define IRQCHIP_MATCH(compat, fn) { .compatible = compat, .data = fn }, argument
|
/kernel/linux/linux-5.10/drivers/hid/ |
D | uhid.c | 434 struct uhid_create_req_compat *compat; in uhid_event_from_user() local 436 compat = kzalloc(sizeof(*compat), GFP_KERNEL); in uhid_event_from_user() 437 if (!compat) in uhid_event_from_user() 442 if (copy_from_user(compat, buffer, in uhid_event_from_user() 443 min(len, sizeof(*compat)))) { in uhid_event_from_user() 444 kfree(compat); in uhid_event_from_user() 451 memcpy(event->u.create.name, compat->name, in uhid_event_from_user() 452 sizeof(compat->name)); in uhid_event_from_user() 453 memcpy(event->u.create.phys, compat->phys, in uhid_event_from_user() 454 sizeof(compat->phys)); in uhid_event_from_user() [all …]
|
/kernel/linux/linux-5.10/arch/parisc/kernel/syscalls/ |
D | syscalltbl.sh | 28 while read nr abi name entry compat ; do 29 if [ "$my_abi" = "c32" ] && [ ! -z "$compat" ]; then 30 emit $((nxt+offset)) $((nr+offset)) $compat
|
/kernel/linux/linux-5.10/arch/mips/kernel/syscalls/ |
D | syscalltbl.sh | 28 while read nr abi name entry compat ; do 29 if [ "$my_abi" = "64_o32" ] && [ ! -z "$compat" ]; then 30 emit $((nxt+offset)) $((nr+offset)) $compat
|
/kernel/linux/linux-5.10/arch/sparc/kernel/syscalls/ |
D | syscalltbl.sh | 28 while read nr abi name entry compat ; do 29 if [ "$my_abi" = "c32" ] && [ ! -z "$compat" ]; then 30 emit $((nxt+offset)) $((nr+offset)) $compat
|
/kernel/linux/linux-5.10/arch/powerpc/kernel/syscalls/ |
D | syscalltbl.sh | 28 while read nr abi name entry compat ; do 29 if [ "$my_abi" = "c32" ] && [ ! -z "$compat" ]; then 30 emit $((nxt+offset)) $((nr+offset)) $compat
|
/kernel/linux/linux-5.10/security/keys/ |
D | Makefile | 19 compat-obj-$(CONFIG_KEY_DH_OPERATIONS) += compat_dh.o 20 obj-$(CONFIG_COMPAT) += compat.o $(compat-obj-y)
|
/kernel/linux/linux-5.10/arch/riscv/kernel/ |
D | cpu.c | 109 const char *compat, *isa, *mmu; in c_show() local 117 if (!of_property_read_string(node, "compatible", &compat) in c_show() 118 && strcmp(compat, "riscv")) in c_show() 119 seq_printf(m, "uarch\t\t: %s\n", compat); in c_show()
|
/kernel/linux/linux-5.10/drivers/of/ |
D | device.c | 220 const char *compat; in of_device_get_modalias() local 238 of_property_for_each_string(dev->of_node, "compatible", p, compat) { in of_device_get_modalias() 239 csize = strlen(compat) + 1; in of_device_get_modalias() 244 csize = snprintf(str, len, "C%s", compat); in of_device_get_modalias() 302 const char *compat, *type; in of_device_uevent() local 319 of_property_for_each_string(dev->of_node, "compatible", p, compat) { in of_device_uevent() 320 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in of_device_uevent()
|
/kernel/linux/linux-5.10/sound/aoa/soundbus/ |
D | core.c | 62 const char *compat; in soundbus_uevent() local 88 compat = of_get_property(of->dev.of_node, "compatible", &cplen); in soundbus_uevent() 89 while (compat && cplen > 0) { in soundbus_uevent() 91 retval = add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in soundbus_uevent() 94 compat += env->buflen - tmp; in soundbus_uevent()
|
/kernel/linux/linux-5.10/drivers/pps/ |
D | pps.c | 258 struct pps_fdata_compat compat; in pps_cdev_compat_ioctl() local 264 err = copy_from_user(&compat, uarg, sizeof(struct pps_fdata_compat)); in pps_cdev_compat_ioctl() 268 memcpy(&fdata.timeout, &compat.timeout, in pps_cdev_compat_ioctl() 278 compat.info.assert_sequence = pps->assert_sequence; in pps_cdev_compat_ioctl() 279 compat.info.clear_sequence = pps->clear_sequence; in pps_cdev_compat_ioctl() 280 compat.info.current_mode = pps->current_mode; in pps_cdev_compat_ioctl() 282 memcpy(&compat.info.assert_tu, &pps->assert_tu, in pps_cdev_compat_ioctl() 284 memcpy(&compat.info.clear_tu, &pps->clear_tu, in pps_cdev_compat_ioctl() 289 return copy_to_user(uarg, &compat, in pps_cdev_compat_ioctl()
|
/kernel/linux/linux-5.10/fs/ceph/ |
D | metric.h | 39 __u8 compat; member 52 __u8 compat; member 64 __u8 compat; member 76 __u8 compat; member
|
/kernel/linux/linux-5.10/drivers/md/bcache/ |
D | features.c | 14 int compat; member 30 for (f = &feature_list[0]; f->compat != 0; f++) { \ 31 if (f->compat != BCH_FEATURE_ ## type) \
|
/kernel/linux/linux-5.10/drivers/gpu/drm/omapdrm/dss/ |
D | base.c | 273 const char *compat; member 293 const char *compat; in omapdss_walk_device() local 296 ret = of_property_read_string(node, "compatible", &compat); in omapdss_walk_device() 304 comp->compat = compat; in omapdss_walk_device() 353 if (!strstarts(comp->compat, "omapdss,")) in omapdss_component_is_loaded()
|
/kernel/linux/linux-5.10/drivers/soundwire/ |
D | slave.c | 208 const char *compat = NULL; in sdw_of_find_slaves() local 212 compat = of_get_property(node, "compatible", NULL); in sdw_of_find_slaves() 213 if (!compat) in sdw_of_find_slaves() 216 ret = sscanf(compat, "sdw%01x%04hx%04hx%02hhx", &sdw_version, in sdw_of_find_slaves() 221 compat); in sdw_of_find_slaves()
|
/kernel/linux/linux-5.10/drivers/ide/ |
D | trm290.c | 281 u16 new, old, compat = hwif->channel ? 0x374 : 0x3f4; in init_hwif_trm290() local 289 if (old != compat && old_mask == 0xff) { in init_hwif_trm290() 291 compat += (next_offset += 0x400); in init_hwif_trm290() 292 hwif->io_ports.ctl_addr = compat + 2; in init_hwif_trm290() 293 outw(compat | 1, hwif->config_data); in init_hwif_trm290()
|