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

Commit 886ee546 authored by Joe Perches's avatar Joe Perches Committed by Len Brown
Browse files

thermal_sys: remove unnecessary line continuations



Line continations are not necessary in function calls or statements.
Remove them.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Reviewed-by: default avatarJesper Juhl <jj@chaosbits.net>
Cc: Len Brown <lenb@kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent b11de07c
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -281,8 +281,7 @@ passive_show(struct device *dev, struct device_attribute *attr,
static DEVICE_ATTR(type, 0444, type_show, NULL);
static DEVICE_ATTR(temp, 0444, temp_show, NULL);
static DEVICE_ATTR(mode, 0644, mode_show, mode_store);
static DEVICE_ATTR(passive, S_IRUGO | S_IWUSR, passive_show, \
		   passive_store);
static DEVICE_ATTR(passive, S_IRUGO | S_IWUSR, passive_show, passive_store);

static struct device_attribute trip_point_attrs[] = {
	__ATTR(trip_point_0_type, 0444, trip_point_type_show, NULL),
@@ -1313,7 +1312,7 @@ int thermal_generate_netlink_event(u32 orig, enum events event)
	static unsigned int thermal_event_seqnum;

	/* allocate memory */
	size = nla_total_size(sizeof(struct thermal_genl_event)) + \
	size = nla_total_size(sizeof(struct thermal_genl_event)) +
	       nla_total_size(0);

	skb = genlmsg_new(size, GFP_ATOMIC);
@@ -1330,7 +1329,7 @@ int thermal_generate_netlink_event(u32 orig, enum events event)
	}

	/* fill the data */
	attr = nla_reserve(skb, THERMAL_GENL_ATTR_EVENT, \
	attr = nla_reserve(skb, THERMAL_GENL_ATTR_EVENT,
			   sizeof(struct thermal_genl_event));

	if (!attr) {