Lines Matching defs:name
137 return scnprintf(buf, PAGE_SIZE, "%s\n", bus->name);
139 static DEVICE_ATTR_RO(name);
160 .name = "mcb",
169 .name = "mcb-carrier",
177 * @mod_name: The name of the @mcb_driver's module
433 * @name: The name for the memory reference.
435 * Request memory for a @mcb_device. If @name is NULL the driver name will
438 struct resource *mcb_request_mem(struct mcb_device *dev, const char *name)
443 if (!name)
444 name = dev->dev.driver->name;
448 mem = request_mem_region(dev->mem.start, size, name);