net: rmnet_data: Change the log level for unknown IOCTL's

Change the log level from high to medium when userspace calls an
unknown IOCTL on an rmnet data device. This log message is not
very useful and often causes log spam in the serial device
output which may occasionally lead to watchdog timeouts.

CRs-fixed: 1000453
Change-Id: I50e038d838eded30ee8304fefb2c13328eaf9683
Signed-off-by: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
This commit is contained in:
Subash Abhinov Kasiviswanathan 2016-04-11 12:41:07 -06:00 committed by syphyr
parent 00f26c125f
commit 62b027b6e0
1 changed files with 1 additions and 1 deletions

View File

@ -455,7 +455,7 @@ static int rmnet_vnd_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
break;
default:
LOGH("Unkown IOCTL 0x%08X", cmd);
LOGM("Unknown IOCTL 0x%08X", cmd);
rc = -EINVAL;
}