Lines Matching full:location
279 u32 location; in efm32_spi_probe_dt() local
282 ret = of_property_read_u32(np, "energymicro,location", &location); in efm32_spi_probe_dt()
286 ret = of_property_read_u32(np, "efm32,location", &location); in efm32_spi_probe_dt()
289 /* fall back to old and (wrongly) generic property "location" */ in efm32_spi_probe_dt()
290 ret = of_property_read_u32(np, "location", &location); in efm32_spi_probe_dt()
293 dev_dbg(&pdev->dev, "using location %u\n", location); in efm32_spi_probe_dt()
295 /* default to location configured in hardware */ in efm32_spi_probe_dt()
296 location = efm32_spi_get_configured_location(ddata); in efm32_spi_probe_dt()
298 dev_info(&pdev->dev, "fall back to location %u\n", location); in efm32_spi_probe_dt()
301 ddata->pdata.location = location; in efm32_spi_probe_dt()
387 REG_ROUTE_LOCATION(ddata->pdata.location), REG_ROUTE); in efm32_spi_probe()