lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date: Mon, 17 Jul 2023 11:43:00 +0800
From: hanyu001@...suo.com
To: davem@...emloft.net, edumazet@...gle.com, kuba@...nel.org,
 pabeni@...hat.com
Cc: netdev@...r.kernel.org, linux-net-drivers@....com,
 linux-kernel@...r.kernel.org
Subject: sfc: falcon: Prefer unsigned int to bare use of unsigned

Fix checkpatch warnings:

./drivers/net/ethernet/sfc/falcon/net_driver.h:1167: WARNING: Prefer 
'unsigned int' to bare use of 'unsigned'
./drivers/net/ethernet/sfc/falcon/net_driver.h:1188: WARNING: Prefer 
'unsigned int' to bare use of 'unsigned'
./drivers/net/ethernet/sfc/falcon/net_driver.h:1188: WARNING: Prefer 
'unsigned int' to bare use of 'unsigned'
./drivers/net/ethernet/sfc/falcon/net_driver.h:1202: WARNING: Prefer 
'unsigned int' to bare use of 'unsigned'

Signed-off-by: maqimei <2433033762@...com>
---
  drivers/net/ethernet/sfc/falcon/net_driver.h | 6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ethernet/sfc/falcon/net_driver.h 
b/drivers/net/ethernet/sfc/falcon/net_driver.h
index a2c7139..d2d8f9b 100644
--- a/drivers/net/ethernet/sfc/falcon/net_driver.h
+++ b/drivers/net/ethernet/sfc/falcon/net_driver.h
@@ -1164,7 +1164,7 @@ struct ef4_nic_type {
   
*************************************************************************/

  static inline struct ef4_channel *
-ef4_get_channel(struct ef4_nic *efx, unsigned index)
+ef4_get_channel(struct ef4_nic *efx, unsigned int  index)
  {
      EF4_BUG_ON_PARANOID(index >= efx->n_channels);
      return efx->channel[index];
@@ -1185,7 +1185,7 @@ struct ef4_nic_type {
               (_efx)->channel[_channel->channel - 1] : NULL)

  static inline struct ef4_tx_queue *
-ef4_get_tx_queue(struct ef4_nic *efx, unsigned index, unsigned type)
+ef4_get_tx_queue(struct ef4_nic *efx, unsigned int index, unsigned int 
type)
  {
      EF4_BUG_ON_PARANOID(index >= efx->n_tx_channels ||
                  type >= EF4_TXQ_TYPES);
@@ -1199,7 +1199,7 @@ static inline bool 
ef4_channel_has_tx_queues(struct ef4_channel *channel)
  }

  static inline struct ef4_tx_queue *
-ef4_channel_get_tx_queue(struct ef4_channel *channel, unsigned type)
+ef4_channel_get_tx_queue(struct ef4_channel *channel, unsigned int 
type)
  {
      EF4_BUG_ON_PARANOID(!ef4_channel_has_tx_queues(channel) ||
                  type >= EF4_TXQ_TYPES);

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ