Searched defs:path (Results 1 - 25 of 38) sorted by relevance

12

/arch/sh/drivers/pci/
H A Dfixups-cayman.c13 5V slots get into the CPU via a different path from the IRQ lines
15 interrupts go via the 5V or 3.3V path, i.e. the 'bridge swizzling'
34 } path[4]; local
39 slot = path[i].slot = PCI_SLOT(dev->devfn);
40 pin = path[i].pin = pci_swizzle_interrupt_pin(dev, pin);
43 if (i > 3) panic("PCI path to root bus too long!\n");
57 slot = path[i].slot;
58 pin = path[i].pin;
65 slot = path[i].slot;
66 pin = path[
[all...]
/arch/arm/mach-imx/
H A Dclk.c24 char *path; local
26 path = kasprintf(GFP_KERNEL, "/clocks/%s", name);
27 if (!path)
30 phandle.np = of_find_node_by_path(path);
31 kfree(path);
/arch/powerpc/platforms/cell/spufs/
H A Dsyscalls.c65 struct path path; local
69 dentry = user_path_create(AT_FDCWD, pathname, &path, LOOKUP_DIRECTORY);
72 ret = spufs_create(&path, dentry, flags, mode, neighbor);
73 done_path_create(&path, dentry);
/arch/um/os-Linux/
H A Dexecvp.c52 char *path = getenv("PATH"); local
53 if (path == NULL)
54 path = ":/bin:/usr/bin";
57 pathlen = strlen(path);
64 p = path;
68 path = p;
70 //p = strchrnul (path, ':');
71 p = strchr(path, ':');
73 p = strchr(path, '\0');
75 if (p == path)
[all...]
/arch/powerpc/boot/
H A Dserial.c89 char path[MAX_PATH_LEN]; local
95 if (getprop(devp, "linux,stdout-path", path, MAX_PATH_LEN) > 0) {
96 devp = finddevice(path);
H A Dplanetcore.c109 char *path; local
122 path = get_path(node, prop_buf, MAX_PROP_LEN);
123 if (!path)
132 setprop_str(chosen, "linux,stdout-path", path);
146 len = getprop(chosen, "linux,stdout-path", prop_buf, MAX_PROP_LEN);
153 "Bad /chosen/linux,stdout-path.\r\n");
H A Dvirtex.c83 char path[MAX_PATH_LEN]; local
89 if (getprop(devp, "linux,stdout-path", path, MAX_PATH_LEN) > 0) {
90 devp = finddevice(path);
H A Dlibfdt-wrapper.c76 static void *fdt_wrapper_finddevice(const char *path) argument
78 return offset_devp(fdt_path_offset(fdt, path));
H A Ddevtree.c81 void dt_fixup_clock(const char *path, u32 freq) argument
83 void *devp = finddevice(path);
86 printf("%s: clock-frequency <- %x (%dMHz)\n\r", path, freq, MHZ(freq));
/arch/tile/mm/
H A Delf.c42 char *buf, *path; local
62 path = d_path(&mm->exe_file->f_path, buf, PAGE_SIZE);
63 if (IS_ERR(path)) {
88 sim_notify_exec(path);
/arch/powerpc/platforms/powermac/
H A Dudbg_scc.c75 const char *path; local
84 path = of_get_property(of_chosen, "linux,stdout-path", NULL);
85 if (path != NULL)
86 stdout = of_find_node_by_path(path);
/arch/powerpc/sysdev/
H A Dmv64x60_udbg.c73 const char *path; local
80 path = of_get_property(of_chosen, "linux,stdout-path", NULL);
81 if (!path)
84 stdout = of_find_node_by_path(path);
H A Dscom.c102 struct debugfs_blob_wrapper path; member in struct:scom_debug_entry
198 ent->path.data = (void*) dn->full_name;
199 ent->path.size = strlen(dn->full_name);
208 debugfs_create_blob("devspec", 0400, dir, &ent->path);
/arch/sparc/kernel/
H A Dprom_32.c308 const char *path; local
311 path = of_get_property(dp, "stdout-path", NULL);
312 if (!path) {
313 prom_printf("No stdout-path in root node.\n");
316 strcpy(of_console_path, path);
H A Dsys_sparc32.c54 asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low) argument
59 return sys_truncate(path, (high << 32) | low);
/arch/x86/platform/olpc/
H A Dolpc_dt.c121 if (olpc_ofw("package-to-path", args, res) || *len < 1)
168 static phandle __init olpc_dt_finddevice(const char *path) argument
171 const void *args[] = { path };
/arch/arc/kernel/
H A Dtroubleshoot.c57 struct path path; local
70 path = exe_file->f_path;
73 path_nm = d_path(&path, buf, 255);
74 path_put(&path);
103 struct path *path = &file->f_path; local
104 nm = d_path(path, buf, PAGE_SIZE - 1);
/arch/metag/kernel/
H A Dsys_metag.c107 asmlinkage long sys_truncate64_metag(const char __user *path, unsigned long lo, argument
110 return sys_truncate64(path, merge_64(hi, lo));
/arch/parisc/hpux/
H A Dfs.c127 int hpux_mount(const char *fs, const char *path, int mflag, argument
/arch/powerpc/kernel/
H A Dsys_ppc32.c94 asmlinkage int compat_sys_truncate64(const char __user * path, u32 reg4, argument
97 return sys_truncate(path, (high << 32) | low);
/arch/powerpc/platforms/cell/
H A Dbeat.c209 u64 path[4], data[2]; local
243 path[0] = 0x1000000065780000ul; /* 1,ex */
244 path[1] = 0x627574746f6e0000ul; /* button */
245 path[2] = 0;
246 strncpy((char *)&path[2], ev->typecode, 8);
247 path[3] = 0;
250 beat_create_repository_node(path, data);
/arch/powerpc/platforms/pseries/
H A Dreconfig.c27 * @path: the full_name of a node to be added to the tree
30 * described by path. E.g., for path = "/foo/bar", returns
33 static struct device_node *derive_parent(const char *path) argument
37 size_t parent_path_len = strrchr(path, '/') - path + 1;
39 /* reject if path is "/" */
40 if (!strcmp(path, "/"))
43 if (strrchr(path, '/') != path) {
57 pSeries_reconfig_add_node(const char *path, struct property *proplist) argument
231 char *path, *end, *name; local
[all...]
/arch/x86/kernel/cpu/microcode/
H A Damd_early.c41 char *path; local
53 path = (char *)__pa_nodebug(ucode_path);
57 path = ucode_path;
62 return find_cpio_data(path, start, size, &offset);
/arch/arm/mach-integrator/
H A Dintegrator_ap.c397 const char *path; local
407 "arm,timer-primary", &path);
410 node = of_find_node_by_path(path);
424 "arm,timer-secondary", &path);
427 node = of_find_node_by_path(path);
/arch/parisc/kernel/
H A Dsys_parisc.c286 asmlinkage long parisc_truncate64(const char __user * path, argument
289 return sys_truncate(path, (long)high << 32 | low);
300 asmlinkage long sys_truncate64(const char __user * path, unsigned long length) argument
302 return sys_truncate(path, length);
314 asmlinkage long parisc_truncate64(const char __user * path, argument
317 return sys_truncate64(path, (loff_t)high << 32 | low);

Completed in 1804 milliseconds

12