|
@@ -1288,10 +1288,6 @@ static int maven_detach_client(struct i2c_client* client) {
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int maven_command(struct i2c_client* client, unsigned int cmd, void* arg) {
|
|
|
- return -ENOIOCTLCMD; /* or -EINVAL, depends on who will call this */
|
|
|
-}
|
|
|
-
|
|
|
static struct i2c_driver maven_driver={
|
|
|
.driver = {
|
|
|
.name = "maven",
|
|
@@ -1299,7 +1295,6 @@ static struct i2c_driver maven_driver={
|
|
|
.id = I2C_DRIVERID_MGATVO,
|
|
|
.attach_adapter = maven_attach_adapter,
|
|
|
.detach_client = maven_detach_client,
|
|
|
- .command = maven_command,
|
|
|
};
|
|
|
|
|
|
/* ************************** */
|