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

Commit 3aadf45e authored by LuK1337's avatar LuK1337 Committed by Łukasz Patron
Browse files

input: touchscreen: st: Fix strict-prototypes error

Change-Id: I0975813df12ad5e1920e67b33d7bd1c4aa5def11
parent 2250d341
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ int openChannel(struct i2c_client *clt)
	return OK;
}

struct device *getDev()
struct device *getDev(void)
{
	if (client != NULL)
		return &(client->dev);
@@ -92,7 +92,7 @@ struct device *getDev()
		return NULL;
}

struct i2c_client *getClient()
struct i2c_client *getClient(void)
{
	if (client != NULL)
		return client;
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ int elapsedNanosecond(struct StopWatch *w)
	return result;
}

char *timestamp()
char *timestamp(void)
{
	char *result = NULL;