fixed all the errors found by checkpatch.pl

Signed-off-by: Gokulnath A <gokulnath.avanashilin...@in.bosch.com>
---
 drivers/staging/bcm/hostmibs.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/bcm/hostmibs.c b/drivers/staging/bcm/hostmibs.c
index f55300d..38acfe3 100644
--- a/drivers/staging/bcm/hostmibs.c
+++ b/drivers/staging/bcm/hostmibs.c
@@ -27,9 +27,9 @@ INT ProcessGetHostMibs(struct bcm_mini_adapter *Adapter, 
struct bcm_host_stats_m
        /* Copy the classifier Table */
        for (nClassifierIndex = 0; nClassifierIndex < MAX_CLASSIFIERS; 
nClassifierIndex++) {
                if (Adapter->astClassifierTable[nClassifierIndex].bUsed == TRUE)
-                       memcpy((PVOID) & pstHostMibs->
+                       memcpy((PVOID)&pstHostMibs->
                               astClassifierTable[nClassifierIndex],
-                              (PVOID) & Adapter->
+                              (PVOID)&Adapter->
                               astClassifierTable[nClassifierIndex],
                               sizeof(struct bcm_mibs_classifier_rule));
        }
@@ -37,8 +37,8 @@ INT ProcessGetHostMibs(struct bcm_mini_adapter *Adapter, 
struct bcm_host_stats_m
        /* Copy the SF Table */
        for (nSfIndex = 0; nSfIndex < NO_OF_QUEUES; nSfIndex++) {
                if (Adapter->PackInfo[nSfIndex].bValid) {
-                       memcpy((PVOID) & pstHostMibs->astSFtable[nSfIndex],
-                              (PVOID) & Adapter->PackInfo[nSfIndex],
+                       memcpy((PVOID)&pstHostMibs->astSFtable[nSfIndex],
+                              (PVOID)&Adapter->PackInfo[nSfIndex],
                                sizeof(struct bcm_mibs_table));
                } else {
                        /* If index in not valid,
-- 
1.8.1.2

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to