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

Commit 34825e51 authored by Chanwoo Choi's avatar Chanwoo Choi
Browse files

extcon: Fix the checkpatch warning



This patch fixes the checkpatch warning about coding style.

Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
parent f68a8342
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -539,8 +539,6 @@ static void max14577_muic_irq_work(struct work_struct *work)
		dev_err(info->dev, "failed to handle MUIC interrupt\n");

	mutex_unlock(&info->mutex);

	return;
}

/*
@@ -730,8 +728,7 @@ static int max14577_muic_probe(struct platform_device *pdev)
				muic_irq->name, info);
		if (ret) {
			dev_err(&pdev->dev,
				"failed: irq request (IRQ: %d,"
				" error :%d)\n",
				"failed: irq request (IRQ: %d, error :%d)\n",
				muic_irq->irq, ret);
			return ret;
		}
+1 −4
Original line number Diff line number Diff line
@@ -1019,8 +1019,6 @@ static void max77693_muic_irq_work(struct work_struct *work)
		dev_err(info->dev, "failed to handle MUIC interrupt\n");

	mutex_unlock(&info->mutex);

	return;
}

static irqreturn_t max77693_muic_irq_handler(int irq, void *data)
@@ -1171,8 +1169,7 @@ static int max77693_muic_probe(struct platform_device *pdev)
				muic_irq->name, info);
		if (ret) {
			dev_err(&pdev->dev,
				"failed: irq request (IRQ: %d,"
				" error :%d)\n",
				"failed: irq request (IRQ: %d, error :%d)\n",
				muic_irq->irq, ret);
			return ret;
		}
+1 −4
Original line number Diff line number Diff line
@@ -579,8 +579,6 @@ static void max8997_muic_irq_work(struct work_struct *work)
		dev_err(info->dev, "failed to handle MUIC interrupt\n");

	mutex_unlock(&info->mutex);

	return;
}

static irqreturn_t max8997_muic_irq_handler(int irq, void *data)
@@ -689,8 +687,7 @@ static int max8997_muic_probe(struct platform_device *pdev)
				muic_irq->name, info);
		if (ret) {
			dev_err(&pdev->dev,
				"failed: irq request (IRQ: %d,"
				" error :%d)\n",
				"failed: irq request (IRQ: %d, error :%d)\n",
				muic_irq->irq, ret);
			goto err_irq;
		}
+2 −4
Original line number Diff line number Diff line
@@ -582,10 +582,8 @@ static int rt8973a_muic_i2c_probe(struct i2c_client *i2c,
		return -EINVAL;

	info = devm_kzalloc(&i2c->dev, sizeof(*info), GFP_KERNEL);
	if (!info) {
		dev_err(&i2c->dev, "failed to allocate memory\n");
	if (!info)
		return -ENOMEM;
	}
	i2c_set_clientdata(i2c, info);

	info->dev = &i2c->dev;
@@ -681,7 +679,7 @@ static int rt8973a_muic_i2c_remove(struct i2c_client *i2c)
	return 0;
}

static struct of_device_id rt8973a_dt_match[] = {
static const struct of_device_id rt8973a_dt_match[] = {
	{ .compatible = "richtek,rt8973a-muic" },
	{ },
};
+3 −3
Original line number Diff line number Diff line
@@ -359,8 +359,8 @@ static unsigned int sm5502_muic_get_cable_type(struct sm5502_muic_info *info)
			break;
		default:
			dev_dbg(info->dev,
				"cannot identify the cable type: adc(0x%x) "
				"dev_type1(0x%x)\n", adc, dev_type1);
				"cannot identify the cable type: adc(0x%x)\n",
				adc);
			return -EINVAL;
		};
		break;
@@ -659,7 +659,7 @@ static int sm5502_muic_i2c_remove(struct i2c_client *i2c)
	return 0;
}

static struct of_device_id sm5502_dt_match[] = {
static const struct of_device_id sm5502_dt_match[] = {
	{ .compatible = "siliconmitus,sm5502-muic" },
	{ },
};
Loading