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

Commit df7019f3 authored by NeilBrown's avatar NeilBrown Committed by Greg Kroah-Hartman
Browse files

w1_bq27000 - remove w1_bq27000_write



The function is never used so remove it to avoid bit-rot.
It can trivially be re-added if there is ever a need.

Signed-off-by: default avatarNeilBrown <neilb@suse.de>
Acked-by: default avatarEvgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b6c40b85
Loading
Loading
Loading
Loading
+0 −14
Original line number Diff line number Diff line
@@ -26,20 +26,6 @@

static int F_ID;

void w1_bq27000_write(struct device *dev, u8 buf, u8 reg)
{
	struct w1_slave *sl = container_of(dev, struct w1_slave, dev);

	if (!dev) {
		pr_info("Could not obtain slave dev ptr\n");
		return;
	}

	w1_write_8(sl->master, HDQ_CMD_WRITE | reg);
	w1_write_8(sl->master, buf);
}
EXPORT_SYMBOL(w1_bq27000_write);

static int w1_bq27000_read(struct device *dev, unsigned int reg)
{
	u8 val;