aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging
diff options
context:
space:
mode:
authorTomas Winkler <tomas.winkler@intel.com>2011-12-13 23:39:33 +0200
committerGreg Kroah-Hartman <gregkh@suse.de>2011-12-13 16:22:18 -0800
commitc9667bff9d191db5775d383d9b5efecc26eccae1 (patch)
treef5479480ce9b6471508b706f087c8951fb747aec /drivers/staging
parente0ec8a67089762b29071e879388986ab7370d330 (diff)
staging/mei: remove outdated comment about setting iamthif_mtu
iamthif_mtu doesn't have default value anymore it is always supplied by the ME firmware Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/mei/init.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/staging/mei/init.c b/drivers/staging/mei/init.c
index ce102248e3b..2bb224fb095 100644
--- a/drivers/staging/mei/init.c
+++ b/drivers/staging/mei/init.c
@@ -591,15 +591,10 @@ void mei_host_init_iamthif(struct mei_device *dev)
return;
}
- /* Do not render the system unusable when iamthif_mtu is not equal to
- the value received from ME.
- Assign iamthif_mtu to the value received from ME in order to solve the
- hardware macro incompatibility. */
+ /* Assign iamthif_mtu to the value received from ME */
- dev_dbg(&dev->pdev->dev, "[DEFAULT] IAMTHIF = %d\n", dev->iamthif_mtu);
dev->iamthif_mtu = dev->me_clients[i].props.max_msg_length;
- dev_dbg(&dev->pdev->dev,
- "IAMTHIF = %d\n",
+ dev_dbg(&dev->pdev->dev, "IAMTHIF_MTU = %d\n",
dev->me_clients[i].props.max_msg_length);
kfree(dev->iamthif_msg_buf);