device: Fix tiny indentation issue

The whole file is perfectly indented everywhere else.

Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
Tomasz Bursztyka 2020-03-06 10:17:36 +01:00 committed by Carles Cufí
commit 6f318a5223

View file

@ -85,8 +85,8 @@ extern "C" {
* (e.g. CONFIG_KERNEL_INIT_PRIORITY_DEFAULT + 5). * (e.g. CONFIG_KERNEL_INIT_PRIORITY_DEFAULT + 5).
*/ */
#define DEVICE_INIT(dev_name, drv_name, init_fn, data, cfg_info, level, prio) \ #define DEVICE_INIT(dev_name, drv_name, init_fn, data, cfg_info, level, prio) \
DEVICE_AND_API_INIT(dev_name, drv_name, init_fn,\ DEVICE_AND_API_INIT(dev_name, drv_name, init_fn, \
data, cfg_info, level, prio, NULL) data, cfg_info, level, prio, NULL)
/** /**