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

Commit fbabbddd authored by Jasmin Jessich's avatar Jasmin Jessich Committed by Mauro Carvalho Chehab
Browse files

media: dvb_ca_en50221: Added line breaks



Fixed all:
  WARNING: Missing a blank line after declarations

Signed-off-by: default avatarJasmin Jessich <jasmin@anw.at>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent a75aa90c
Loading
Loading
Loading
Loading
+6 −2
Original line number Original line Diff line number Diff line
@@ -178,7 +178,9 @@ static void dvb_ca_private_free(struct dvb_ca_private *ca)


static void dvb_ca_private_release(struct kref *ref)
static void dvb_ca_private_release(struct kref *ref)
{
{
	struct dvb_ca_private *ca = container_of(ref, struct dvb_ca_private, refcount);
	struct dvb_ca_private *ca;

	ca = container_of(ref, struct dvb_ca_private, refcount);
	dvb_ca_private_free(ca);
	dvb_ca_private_free(ca);
}
}


@@ -297,8 +299,10 @@ static int dvb_ca_en50221_wait_if_status(struct dvb_ca_private *ca, int slot,
	start = jiffies;
	start = jiffies;
	timeout = jiffies + timeout_hz;
	timeout = jiffies + timeout_hz;
	while (1) {
	while (1) {
		int res;

		/* read the status and check for error */
		/* read the status and check for error */
		int res = ca->pub->read_cam_control(ca->pub, slot, CTRLIF_STATUS);
		res = ca->pub->read_cam_control(ca->pub, slot, CTRLIF_STATUS);
		if (res < 0)
		if (res < 0)
			return -EIO;
			return -EIO;