Commit 557c97b5 authored by Sean Young's avatar Sean Young Committed by Mauro Carvalho Chehab
Browse files

media: cec: name for RC passthrough device does not need 'RC for'



An RC device is does not need to be called 'RC for'. Simply the name
will suffice.

Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent c439d5c1
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -307,12 +307,10 @@ struct cec_adapter *cec_allocate_adapter(const struct cec_adap_ops *ops,
		return ERR_PTR(-ENOMEM);
	}

	snprintf(adap->device_name, sizeof(adap->device_name),
		 "RC for %s", name);
	snprintf(adap->input_phys, sizeof(adap->input_phys),
		 "%s/input0", name);
		 "%s/input0", adap->name);

	adap->rc->device_name = adap->device_name;
	adap->rc->device_name = adap->name;
	adap->rc->input_phys = adap->input_phys;
	adap->rc->input_id.bustype = BUS_CEC;
	adap->rc->input_id.vendor = 0;
+0 −2
Original line number Diff line number Diff line
@@ -198,9 +198,7 @@ struct cec_adapter {
	u16 phys_addrs[15];
	u32 sequence;

	char device_name[32];
	char input_phys[32];
	char input_drv[32];
};

static inline void *cec_get_drvdata(const struct cec_adapter *adap)