Dan Carpenter 915d9b7142 scsi: qedi: tidy up a size calculation
The id_tbl->table pointer points to unsigned long so static checkers
complain that instead of 4 we should be allocating sizeof(long) bytes.

We're trying to allocate enough bits for the bitmap.  The size variable is
always 1024.  (1024 / 32 * 4) is the same as (1024 / 64 * 8) so this
doesn't change runtime, but this is the more idiomatic way to do it and
makes the static checker happy.

[mkp: typo]

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Manish Rangankar <Manish.Rangankar@cavium.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2018-07-02 16:17:22 -04:00
..
2017-10-19 12:46:43 +01:00
2017-03-13 15:33:09 -07:00
2018-02-27 21:19:13 -05:00
2017-03-13 15:33:09 -07:00
2018-04-03 17:38:39 -07:00
2018-02-13 21:37:00 -05:00
2018-06-05 10:48:09 -04:00