Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7e0d3542 authored by Christian Gromm's avatar Christian Gromm Committed by Greg Kroah-Hartman
Browse files

staging: most: core: fix formatting



This patch fixes coding style violations.

Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fdbdc0e6
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -277,7 +277,6 @@ static ssize_t set_number_of_buffers_store(struct device *dev,
					   size_t count)
{
	struct most_channel *c = to_channel(dev);

	int ret = kstrtou16(buf, 0, &c->cfg.num_buffers);

	if (ret)
@@ -663,13 +662,11 @@ inline int link_channel_to_component(struct most_channel *c,
		return -ENOSPC;

	*comp_ptr = comp;
	ret = comp->probe_channel(c->iface, c->channel_id,
				 &c->cfg, comp_param);
	ret = comp->probe_channel(c->iface, c->channel_id, &c->cfg, comp_param);
	if (ret) {
		*comp_ptr = NULL;
		return ret;
	}

	return 0;
}

@@ -710,7 +707,6 @@ static ssize_t add_link_store(struct device_driver *drv,
	size_t max_len = min_t(size_t, len + 1, STRING_SIZE);

	strlcpy(buffer, buf, max_len);

	ret = split_string(buffer, &mdev, &mdev_ch, &comp_name, &comp_param);
	if (ret)
		return ret;
@@ -728,7 +724,6 @@ static ssize_t add_link_store(struct device_driver *drv,
	ret = link_channel_to_component(c, comp, comp_param);
	if (ret)
		return ret;

	return len;
}

+1 −1

File changed.

Contains only whitespace changes.