staging: ks7010: remove non sense comments in ks_hostif.c source file

Comments which say the same as the code are not useful at all
so just remove them.

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Sergio Paracuellos 2018-05-04 06:16:28 +02:00 committed by Greg Kroah-Hartman
parent 2fa68297f0
commit acfb2f32b6

View File

@ -467,10 +467,10 @@ void hostif_mib_get_confirm(struct ks_wlan_private *priv)
u16 mib_val_size; u16 mib_val_size;
u16 mib_val_type; u16 mib_val_type;
mib_status = get_dword(priv); /* MIB status */ mib_status = get_dword(priv);
mib_attribute = get_dword(priv); /* MIB atttibute */ mib_attribute = get_dword(priv);
mib_val_size = get_word(priv); /* MIB value size */ mib_val_size = get_word(priv);
mib_val_type = get_word(priv); /* MIB value type */ mib_val_type = get_word(priv);
if (mib_status) { if (mib_status) {
netdev_err(priv->net_dev, "attribute=%08X, status=%08X\n", netdev_err(priv->net_dev, "attribute=%08X, status=%08X\n",
@ -527,11 +527,11 @@ void hostif_mib_get_confirm(struct ks_wlan_private *priv)
static static
void hostif_mib_set_confirm(struct ks_wlan_private *priv) void hostif_mib_set_confirm(struct ks_wlan_private *priv)
{ {
u32 mib_status; /* +04 MIB Status */ u32 mib_status;
u32 mib_attribute; /* +08 MIB attribute */ u32 mib_attribute;
mib_status = get_dword(priv); /* MIB Status */ mib_status = get_dword(priv);
mib_attribute = get_dword(priv); /* MIB attribute */ mib_attribute = get_dword(priv);
if (mib_status) { if (mib_status) {
/* in case of error */ /* in case of error */