Home
last modified time | relevance | path

Searched refs:sun (Results 1 – 37 of 37) sorted by relevance

/linux-4.1.27/arch/um/drivers/
Ddaemon_user.c34 struct sockaddr_un *sun; in new_addr() local
36 sun = uml_kmalloc(sizeof(struct sockaddr_un), UM_GFP_KERNEL); in new_addr()
37 if (sun == NULL) { in new_addr()
42 sun->sun_family = AF_UNIX; in new_addr()
43 memcpy(sun->sun_path, name, len); in new_addr()
44 return sun; in new_addr()
51 struct sockaddr_un *sun; in connect_to_switch() local
85 sun = uml_kmalloc(sizeof(struct sockaddr_un), UM_GFP_KERNEL); in connect_to_switch()
86 if (sun == NULL) { in connect_to_switch()
105 n = read(pri->control, sun, sizeof(*sun)); in connect_to_switch()
[all …]
/linux-4.1.27/sound/sparc/
DMakefile6 snd-sun-amd7930-objs := amd7930.o
7 snd-sun-cs4231-objs := cs4231.o
8 snd-sun-dbri-objs := dbri.o
10 obj-$(CONFIG_SND_SUN_AMD7930) += snd-sun-amd7930.o
11 obj-$(CONFIG_SND_SUN_CS4231) += snd-sun-cs4231.o
12 obj-$(CONFIG_SND_SUN_DBRI) += snd-sun-dbri.o
DKconfig20 will be called snd-sun-amd7930.
29 will be called snd-sun-cs4231.
39 will be called snd-sun-dbri.
/linux-4.1.27/drivers/acpi/
Dpci_slot.c75 check_slot(acpi_handle handle, unsigned long long *sun) in check_slot() argument
99 status = acpi_evaluate_integer(handle, "_SUN", NULL, sun); in check_slot()
118 unsigned long long sun; in register_slot() local
124 device = check_slot(handle, &sun); in register_slot()
144 snprintf(name, sizeof(name), "%llu", sun); in register_slot()
Dscan.c834 unsigned long long sun; in acpi_device_sun_show() local
836 status = acpi_evaluate_integer(acpi_dev->handle, "_SUN", NULL, &sun); in acpi_device_sun_show()
840 return sprintf(buf, "%llu\n", sun); in acpi_device_sun_show()
842 static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
/linux-4.1.27/drivers/pci/hotplug/
Dacpiphp_core.c287 unsigned int sun) in acpiphp_register_hotplug_slot() argument
314 slot->sun = sun; in acpiphp_register_hotplug_slot()
315 snprintf(name, SLOT_NAME_SIZE, "%u", sun); in acpiphp_register_hotplug_slot()
Dacpiphp.h53 unsigned int sun; /* ACPI _SUN (Slot User Number) value */ member
186 int acpiphp_register_hotplug_slot(struct acpiphp_slot *slot, unsigned int sun);
Dacpiphp_glue.c338 unsigned long long sun; in acpiphp_add_context() local
342 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun); in acpiphp_add_context()
344 sun = bridge->nr_slots; in acpiphp_add_context()
347 sun, pci_domain_nr(pbus), pbus->number, device); in acpiphp_add_context()
349 retval = acpiphp_register_hotplug_slot(slot, sun); in acpiphp_add_context()
354 pr_warn("Slot %llu already registered by another hotplug driver\n", sun); in acpiphp_add_context()
Dacpiphp_ibm.c58 #define hpslot_to_sun(A) (((struct slot *)((A)->private))->sun)
79 u8 sun; member
/linux-4.1.27/Documentation/sound/alsa/
Dalsa-parameters.txt120 snd-sun-amd7930=
123 snd-sun-cs4231= [HW,ALSA]
DALSA-Configuration.txt1751 Module snd-sun-amd7930 (on sparc only)
1758 Module snd-sun-cs4231 (on sparc only)
1765 Module snd-sun-dbri (on sparc only)
/linux-4.1.27/Documentation/devicetree/bindings/arm/bcm/
Dbrcm,brcmstb.txt19 - compatible: "brcm,bcm<chip_id>-sun-top-ctrl", "syscon"
31 compatible = "brcm,bcm7445-sun-top-ctrl", "syscon";
/linux-4.1.27/block/partitions/
DMakefile17 obj-$(CONFIG_SUN_PARTITION) += sun.o
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-devices-sun1 What: /sys/devices/.../sun
Dsysfs-driver-sunxi-sid11 0x000 128 bit root-key (sun[457]i)
/linux-4.1.27/Documentation/filesystems/
Dufs.txt28 sun used in SunOS (Solaris)
/linux-4.1.27/arch/mips/boot/dts/brcm/
Dbcm7125.dtsi99 compatible = "brcm,bcm7125-sun-top-ctrl", "syscon";
Dbcm7360.dtsi93 compatible = "brcm,bcm7360-sun-top-ctrl", "syscon";
Dbcm7358.dtsi93 compatible = "brcm,bcm7358-sun-top-ctrl", "syscon";
Dbcm7362.dtsi99 compatible = "brcm,bcm7362-sun-top-ctrl", "syscon";
Dbcm7420.dtsi100 compatible = "brcm,bcm7420-sun-top-ctrl", "syscon";
Dbcm7425.dtsi101 compatible = "brcm,bcm7425-sun-top-ctrl", "syscon";
Dbcm7346.dtsi99 compatible = "brcm,bcm7346-sun-top-ctrl", "syscon";
/linux-4.1.27/drivers/net/ethernet/
DMakefile77 obj-$(CONFIG_NET_VENDOR_SUN) += sun/
DKconfig167 source "drivers/net/ethernet/sun/Kconfig"
/linux-4.1.27/arch/arm/boot/dts/
Dbcm7445.dtsi83 compatible = "brcm,bcm7445-sun-top-ctrl",
/linux-4.1.27/net/sunrpc/
Dxprtsock.c249 struct sockaddr_un *sun; in xs_format_common_peer_addresses() local
254 sun = xs_addr_un(xprt); in xs_format_common_peer_addresses()
255 strlcpy(buf, sun->sun_path, sizeof(buf)); in xs_format_common_peer_addresses()
2606 struct sockaddr_un *sun = (struct sockaddr_un *)args->dstaddr; in xs_setup_local() local
2631 switch (sun->sun_family) { in xs_setup_local()
2633 if (sun->sun_path[0] != '/') { in xs_setup_local()
2635 sun->sun_path); in xs_setup_local()
Dclnt.c512 struct sockaddr_un *sun = in rpc_create() local
523 sun->sun_path); in rpc_create()
/linux-4.1.27/lib/fonts/
DKconfig109 big letters. It fits between the sun 12x22 and the normal 8x16 font.
/linux-4.1.27/Documentation/video4linux/
Dradiotrack.txt10 (legrang@active.co.za or legrang@cs.sun.ac.za) in 1994, and elaborations from
/linux-4.1.27/firmware/
DMakefile42 fw-shipped-$(CONFIG_CASSINI) += sun/cassini.bin
DWHENCE381 File: sun/cassini.bin
/linux-4.1.27/include/uapi/linux/
Dsoundcard.h84 #if defined(_IOWR) && (defined(_AIX) || (!defined(sun) && !defined(sparc) && !defined(__sparc__) &&…
/linux-4.1.27/Documentation/ide/
DChangeLog.ide-cd.1994-2004136 * by Ales Makarov (xmakarov@sun.felk.cvut.cz)
/linux-4.1.27/Documentation/crypto/
Ddescore-readme.txt137 a while ago i wanted some des routines and the routines documented on sun's
/linux-4.1.27/
DCREDITS1339 E: grobh@sun.ac.za
DMAINTAINERS875 N: sun[x4567]i