Lines Matching defs:spec
133 static int open_fip(const uintptr_t spec);
134 static int open_memmap(const uintptr_t spec);
135 static int open_qspi(const uintptr_t spec);
136 static int open_nand(const uintptr_t spec);
141 int (*check)(const uintptr_t spec);
283 static int open_fip(const uintptr_t spec)
291 result = io_open(fip_dev_handle, spec, &local_image_handle);
301 static int open_memmap(const uintptr_t spec)
308 result = io_open(memmap_dev_handle, spec, &local_image_handle);
317 static int open_qspi(const uintptr_t spec)
319 return open_memmap(spec);
322 static int open_nand(const uintptr_t spec)
324 return open_memmap(spec);