linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* re: rtlwifi: rtl8188ee: Add new driver
@ 2013-04-07  9:39 Dan Carpenter
  2013-04-08 22:24 ` Larry Finger
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2013-04-07  9:39 UTC (permalink / raw)
  To: Larry.Finger; +Cc: linux-wireless

Hi Larry,

I had a question about f0eb856e0b6c: "rtlwifi: rtl8188ee: Add new
driver" from Mar 24, 2013.

drivers/net/wireless/rtlwifi/rtl8188ee/hw.c
  1631          for (path = 0; path < MAX_RF_PATH; path++) {
  1632                  /*2.4G default value*/
  1633                  for (i = 0; i < MAX_CHNL_GROUP_24G; i++) {
  1634                          pwr2g->index_cck_base[path][i] = hwinfo[eadr++];
  1635                          if (pwr2g->index_cck_base[path][i] == 0xFF)
  1636                                  pwr2g->index_cck_base[path][i] = 0x2D;
  1637                  }
  1638                  for (i = 0; i < MAX_CHNL_GROUP_24G-1; i++) {
                                        ^^^^^^^^^^^^^^^^^^^^
We skip the last element of the array.  It's declared on the stack in
the caller function so it just has uninitialized stack data.  It doesn't
look intentional to me.

  1639                          pwr2g->index_bw40_base[path][i] = hwinfo[eadr++];
  1640                          if (pwr2g->index_bw40_base[path][i] == 0xFF)
  1641                                  pwr2g->index_bw40_base[path][i] = 0x2D;
  1642                  }

regards,
dan carpenter


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-04-08 22:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-07  9:39 rtlwifi: rtl8188ee: Add new driver Dan Carpenter
2013-04-08 22:24 ` Larry Finger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).