mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
remove unnecessary init value
This commit is contained in:
parent
b42358eaa2
commit
3806b4d2da
@ -163,7 +163,7 @@ static struct dvb_ca_en50221 en_templ = {
|
|||||||
|
|
||||||
static void ci_attach(struct ddb_port *port)
|
static void ci_attach(struct ddb_port *port)
|
||||||
{
|
{
|
||||||
struct ddb_ci *ci = 0;
|
struct ddb_ci *ci;
|
||||||
|
|
||||||
ci = kzalloc(sizeof(*ci), GFP_KERNEL);
|
ci = kzalloc(sizeof(*ci), GFP_KERNEL);
|
||||||
if (!ci)
|
if (!ci)
|
||||||
@ -294,7 +294,7 @@ static struct dvb_ca_en50221 en_xo2_templ = {
|
|||||||
|
|
||||||
static void ci_xo2_attach(struct ddb_port *port)
|
static void ci_xo2_attach(struct ddb_port *port)
|
||||||
{
|
{
|
||||||
struct ddb_ci *ci = 0;
|
struct ddb_ci *ci;
|
||||||
struct i2c_adapter *i2c;
|
struct i2c_adapter *i2c;
|
||||||
|
|
||||||
ci = kzalloc(sizeof(*ci), GFP_KERNEL);
|
ci = kzalloc(sizeof(*ci), GFP_KERNEL);
|
||||||
|
Loading…
Reference in New Issue
Block a user