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

Commit 9deba73d authored by Christian Gromm's avatar Christian Gromm Committed by Greg Kroah-Hartman
Browse files

staging: most: use braces on all arms of statement



This patch fixes style issues regarding braces on all arms of a statement.

Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent edaa1e33
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -202,9 +202,9 @@ static int startup_dim(struct platform_device *pdev)
	if (dev->clk_speed == -1) {
		pr_info("Bad or missing clock speed parameter, using default value: 3072fs\n");
		dev->clk_speed = CLK_3072FS;
	} else
	} else {
		pr_info("Selected clock speed: %s\n", clock_speed);

	}
	if (pdata && pdata->init) {
		int ret = pdata->init(pdata, dev->io_base, dev->clk_speed);

+2 −1
Original line number Diff line number Diff line
@@ -268,9 +268,10 @@ static void pending_rx_work(struct work_struct *work)
			schedule_delayed_work(&dev->rx.dwork,
					      msecs_to_jiffies(MSEC_PER_SEC
							       / scan_rate));
	} else
	} else {
		enable_irq(dev->client->irq);
	}
}

/*
 * most_irq_handler - Interrupt Service Routine
+3 −2
Original line number Diff line number Diff line
@@ -246,10 +246,11 @@ static unsigned int get_stream_frame_size(struct most_channel_config *cfg)
		if (cfg->packets_per_xact == 0) {
			pr_warn("Misconfig: Packets per XACT zero\n");
			frame_size = 0;
		} else if (cfg->packets_per_xact == 0xFF)
		} else if (cfg->packets_per_xact == 0xFF) {
			frame_size = (USB_MTU / sub_size) * sub_size;
		else
		} else {
			frame_size = cfg->packets_per_xact * sub_size;
		}
		break;
	default:
		pr_warn("Query frame size of non-streaming channel\n");
+8 −8
Original line number Diff line number Diff line
@@ -396,11 +396,11 @@ static ssize_t store_set_direction(struct most_c_obj *c,
				   const char *buf,
				   size_t count)
{
	if (!strcmp(buf, "dir_rx\n"))
	if (!strcmp(buf, "dir_rx\n")) {
		c->cfg.direction = MOST_CH_RX;
	else if (!strcmp(buf, "dir_tx\n"))
	} else if (!strcmp(buf, "dir_tx\n")) {
		c->cfg.direction = MOST_CH_TX;
	else {
	} else {
		pr_info("WARN: invalid attribute settings\n");
		return -EINVAL;
	}
@@ -427,15 +427,15 @@ static ssize_t store_set_datatype(struct most_c_obj *c,
				  const char *buf,
				  size_t count)
{
	if (!strcmp(buf, "control\n"))
	if (!strcmp(buf, "control\n")) {
		c->cfg.data_type = MOST_CH_CONTROL;
	else if (!strcmp(buf, "async\n"))
	} else if (!strcmp(buf, "async\n")) {
		c->cfg.data_type = MOST_CH_ASYNC;
	else if (!strcmp(buf, "sync\n"))
	} else if (!strcmp(buf, "sync\n")) {
		c->cfg.data_type = MOST_CH_SYNC;
	else if (!strcmp(buf, "isoc_avp\n"))
	} else if (!strcmp(buf, "isoc_avp\n")) {
		c->cfg.data_type = MOST_CH_ISOC_AVP;
	else {
	} else {
		pr_info("WARN: invalid attribute settings\n");
		return -EINVAL;
	}