staging: greybus: minor code style fix

checkpatch warning fix for string split across lines

Signed-off-by: Manikantan Ravichandran <ravman1991@gmail.com>
Link: https://lore.kernel.org/r/20210212225035.GA16260@whach
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Manikantan Ravichandran 2021-02-13 04:20:35 +05:30 коммит произвёл Greg Kroah-Hartman
Родитель bc4bf94cc2
Коммит 9a92865401
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -18,8 +18,8 @@ static ssize_t manager_sysfs_add_store(struct kobject *kobj,
struct gb_audio_manager_module_descriptor desc = { {0} }; struct gb_audio_manager_module_descriptor desc = { {0} };
int num = sscanf(buf, int num = sscanf(buf,
"name=%" GB_AUDIO_MANAGER_MODULE_NAME_LEN_SSCANF "s " "name=%" GB_AUDIO_MANAGER_MODULE_NAME_LEN_SSCANF
"vid=%d pid=%d intf_id=%d i/p devices=0x%X o/p devices=0x%X", "s vid=%d pid=%d intf_id=%d i/p devices=0x%X o/p devices=0x%X",
desc.name, &desc.vid, &desc.pid, &desc.intf_id, desc.name, &desc.vid, &desc.pid, &desc.intf_id,
&desc.ip_devices, &desc.op_devices); &desc.ip_devices, &desc.op_devices);