All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hannes Eder <hannes@hanneseder.net>
To: netdev@vger.kernel.org
Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 13/27] drivers/net/ixgbe: fix sparse warnings: make symbols static
Date: Mon, 22 Dec 2008 20:16:50 +0100	[thread overview]
Message-ID: <20081222191650.11807.36848.stgit@vmbox.hanneseder.net> (raw)
In-Reply-To: <20081222191259.11807.53190.stgit@vmbox.hanneseder.net>

Fix this sparse warnings:

  drivers/net/ixgbe/ixgbe_82598.c:180:5: warning: symbol 'ixgbe_get_copper_link_capabilities_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:245:5: warning: symbol 'ixgbe_setup_fc_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:729:5: warning: symbol 'ixgbe_set_vmdq_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:773:5: warning: symbol 'ixgbe_set_vfta_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:897:5: warning: symbol 'ixgbe_read_analog_reg8_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:919:5: warning: symbol 'ixgbe_write_analog_reg8_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:940:5: warning: symbol 'ixgbe_read_i2c_eeprom_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:1000:5: warning: symbol 'ixgbe_get_supported_physical_layer_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_dcb_82598.c:100:5: warning: symbol 'ixgbe_dcb_config_packet_buffers_82598' was not declared. Should it be static?

Signed-off-by: Hannes Eder <hannes@hanneseder.net>
---
 drivers/net/ixgbe/ixgbe_82598.c     |   24 ++++++++++++------------
 drivers/net/ixgbe/ixgbe_dcb_82598.c |    4 ++--
 2 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/drivers/net/ixgbe/ixgbe_82598.c b/drivers/net/ixgbe/ixgbe_82598.c
index 7e09dab..ad5699d 100644
--- a/drivers/net/ixgbe/ixgbe_82598.c
+++ b/drivers/net/ixgbe/ixgbe_82598.c
@@ -177,9 +177,9 @@ static s32 ixgbe_get_link_capabilities_82598(struct ixgbe_hw *hw,
  *
  *  Determines the link capabilities by reading the AUTOC register.
  **/
-s32 ixgbe_get_copper_link_capabilities_82598(struct ixgbe_hw *hw,
-                                             ixgbe_link_speed *speed,
-                                             bool *autoneg)
+static s32 ixgbe_get_copper_link_capabilities_82598(struct ixgbe_hw *hw,
+						    ixgbe_link_speed *speed,
+						    bool *autoneg)
 {
 	s32 status = IXGBE_ERR_LINK_SETUP;
 	u16 speed_ability;
@@ -242,7 +242,7 @@ static enum ixgbe_media_type ixgbe_get_media_type_82598(struct ixgbe_hw *hw)
  *  Configures the flow control settings based on SW configuration.  This
  *  function is used for 802.3x flow control configuration only.
  **/
-s32 ixgbe_setup_fc_82598(struct ixgbe_hw *hw, s32 packetbuf_num)
+static s32 ixgbe_setup_fc_82598(struct ixgbe_hw *hw, s32 packetbuf_num)
 {
 	u32 frctl_reg;
 	u32 rmcs_reg;
@@ -726,7 +726,7 @@ static s32 ixgbe_reset_hw_82598(struct ixgbe_hw *hw)
  *  @rar: receive address register index to associate with a VMDq index
  *  @vmdq: VMDq set index
  **/
-s32 ixgbe_set_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
+static s32 ixgbe_set_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
 {
 	u32 rar_high;
 
@@ -770,8 +770,8 @@ static s32 ixgbe_clear_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
  *
  *  Turn on/off specified VLAN in the VLAN filter table.
  **/
-s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind,
-                         bool vlan_on)
+static s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind,
+				bool vlan_on)
 {
 	u32 regindex;
 	u32 bitindex;
@@ -894,7 +894,7 @@ static s32 ixgbe_blink_led_stop_82598(struct ixgbe_hw *hw, u32 index)
  *
  *  Performs read operation to Atlas analog register specified.
  **/
-s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val)
+static s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val)
 {
 	u32  atlas_ctl;
 
@@ -916,7 +916,7 @@ s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val)
  *
  *  Performs write operation to Atlas analog register specified.
  **/
-s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val)
+static s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val)
 {
 	u32  atlas_ctl;
 
@@ -937,8 +937,8 @@ s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val)
  *
  *  Performs byte read operation to SFP module's EEPROM over I2C interface.
  **/
-s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
-                                u8 *eeprom_data)
+static s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
+				       u8 *eeprom_data)
 {
 	s32 status = 0;
 	u16 sfp_addr = 0;
@@ -997,7 +997,7 @@ out:
  *
  *  Determines physical layer capabilities of the current configuration.
  **/
-s32 ixgbe_get_supported_physical_layer_82598(struct ixgbe_hw *hw)
+static s32 ixgbe_get_supported_physical_layer_82598(struct ixgbe_hw *hw)
 {
 	s32 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
 
diff --git a/drivers/net/ixgbe/ixgbe_dcb_82598.c b/drivers/net/ixgbe/ixgbe_dcb_82598.c
index fce6867..2c046b0 100644
--- a/drivers/net/ixgbe/ixgbe_dcb_82598.c
+++ b/drivers/net/ixgbe/ixgbe_dcb_82598.c
@@ -97,8 +97,8 @@ s32 ixgbe_dcb_get_pfc_stats_82598(struct ixgbe_hw *hw,
  *
  * Configure packet buffers for DCB mode.
  */
-s32 ixgbe_dcb_config_packet_buffers_82598(struct ixgbe_hw *hw,
-                                          struct ixgbe_dcb_config *dcb_config)
+static s32 ixgbe_dcb_config_packet_buffers_82598(struct ixgbe_hw *hw,
+						 struct ixgbe_dcb_config *dcb_config)
 {
 	s32 ret_val = 0;
 	u32 value = IXGBE_RXPBSIZE_64KB;


WARNING: multiple messages have this Message-ID (diff)
From: Hannes Eder <hannes@hanneseder.net>
To: netdev@vger.kernel.org
Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 13/27] drivers/net/ixgbe: fix sparse warnings: make symbols
Date: Mon, 22 Dec 2008 19:16:50 +0000	[thread overview]
Message-ID: <20081222191650.11807.36848.stgit@vmbox.hanneseder.net> (raw)
In-Reply-To: <20081222191259.11807.53190.stgit@vmbox.hanneseder.net>

Fix this sparse warnings:

  drivers/net/ixgbe/ixgbe_82598.c:180:5: warning: symbol 'ixgbe_get_copper_link_capabilities_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:245:5: warning: symbol 'ixgbe_setup_fc_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:729:5: warning: symbol 'ixgbe_set_vmdq_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:773:5: warning: symbol 'ixgbe_set_vfta_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:897:5: warning: symbol 'ixgbe_read_analog_reg8_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:919:5: warning: symbol 'ixgbe_write_analog_reg8_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:940:5: warning: symbol 'ixgbe_read_i2c_eeprom_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_82598.c:1000:5: warning: symbol 'ixgbe_get_supported_physical_layer_82598' was not declared. Should it be static?
  drivers/net/ixgbe/ixgbe_dcb_82598.c:100:5: warning: symbol 'ixgbe_dcb_config_packet_buffers_82598' was not declared. Should it be static?

Signed-off-by: Hannes Eder <hannes@hanneseder.net>
---
 drivers/net/ixgbe/ixgbe_82598.c     |   24 ++++++++++++------------
 drivers/net/ixgbe/ixgbe_dcb_82598.c |    4 ++--
 2 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/drivers/net/ixgbe/ixgbe_82598.c b/drivers/net/ixgbe/ixgbe_82598.c
index 7e09dab..ad5699d 100644
--- a/drivers/net/ixgbe/ixgbe_82598.c
+++ b/drivers/net/ixgbe/ixgbe_82598.c
@@ -177,9 +177,9 @@ static s32 ixgbe_get_link_capabilities_82598(struct ixgbe_hw *hw,
  *
  *  Determines the link capabilities by reading the AUTOC register.
  **/
-s32 ixgbe_get_copper_link_capabilities_82598(struct ixgbe_hw *hw,
-                                             ixgbe_link_speed *speed,
-                                             bool *autoneg)
+static s32 ixgbe_get_copper_link_capabilities_82598(struct ixgbe_hw *hw,
+						    ixgbe_link_speed *speed,
+						    bool *autoneg)
 {
 	s32 status = IXGBE_ERR_LINK_SETUP;
 	u16 speed_ability;
@@ -242,7 +242,7 @@ static enum ixgbe_media_type ixgbe_get_media_type_82598(struct ixgbe_hw *hw)
  *  Configures the flow control settings based on SW configuration.  This
  *  function is used for 802.3x flow control configuration only.
  **/
-s32 ixgbe_setup_fc_82598(struct ixgbe_hw *hw, s32 packetbuf_num)
+static s32 ixgbe_setup_fc_82598(struct ixgbe_hw *hw, s32 packetbuf_num)
 {
 	u32 frctl_reg;
 	u32 rmcs_reg;
@@ -726,7 +726,7 @@ static s32 ixgbe_reset_hw_82598(struct ixgbe_hw *hw)
  *  @rar: receive address register index to associate with a VMDq index
  *  @vmdq: VMDq set index
  **/
-s32 ixgbe_set_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
+static s32 ixgbe_set_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
 {
 	u32 rar_high;
 
@@ -770,8 +770,8 @@ static s32 ixgbe_clear_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
  *
  *  Turn on/off specified VLAN in the VLAN filter table.
  **/
-s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind,
-                         bool vlan_on)
+static s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind,
+				bool vlan_on)
 {
 	u32 regindex;
 	u32 bitindex;
@@ -894,7 +894,7 @@ static s32 ixgbe_blink_led_stop_82598(struct ixgbe_hw *hw, u32 index)
  *
  *  Performs read operation to Atlas analog register specified.
  **/
-s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val)
+static s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val)
 {
 	u32  atlas_ctl;
 
@@ -916,7 +916,7 @@ s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val)
  *
  *  Performs write operation to Atlas analog register specified.
  **/
-s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val)
+static s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val)
 {
 	u32  atlas_ctl;
 
@@ -937,8 +937,8 @@ s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val)
  *
  *  Performs byte read operation to SFP module's EEPROM over I2C interface.
  **/
-s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
-                                u8 *eeprom_data)
+static s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
+				       u8 *eeprom_data)
 {
 	s32 status = 0;
 	u16 sfp_addr = 0;
@@ -997,7 +997,7 @@ out:
  *
  *  Determines physical layer capabilities of the current configuration.
  **/
-s32 ixgbe_get_supported_physical_layer_82598(struct ixgbe_hw *hw)
+static s32 ixgbe_get_supported_physical_layer_82598(struct ixgbe_hw *hw)
 {
 	s32 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
 
diff --git a/drivers/net/ixgbe/ixgbe_dcb_82598.c b/drivers/net/ixgbe/ixgbe_dcb_82598.c
index fce6867..2c046b0 100644
--- a/drivers/net/ixgbe/ixgbe_dcb_82598.c
+++ b/drivers/net/ixgbe/ixgbe_dcb_82598.c
@@ -97,8 +97,8 @@ s32 ixgbe_dcb_get_pfc_stats_82598(struct ixgbe_hw *hw,
  *
  * Configure packet buffers for DCB mode.
  */
-s32 ixgbe_dcb_config_packet_buffers_82598(struct ixgbe_hw *hw,
-                                          struct ixgbe_dcb_config *dcb_config)
+static s32 ixgbe_dcb_config_packet_buffers_82598(struct ixgbe_hw *hw,
+						 struct ixgbe_dcb_config *dcb_config)
 {
 	s32 ret_val = 0;
 	u32 value = IXGBE_RXPBSIZE_64KB;


  parent reply	other threads:[~2008-12-22 19:21 UTC|newest]

Thread overview: 149+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-22 19:14 [PATCH 00/27] drivers/net: fix sparse warnings Hannes Eder
2008-12-22 19:14 ` Hannes Eder
2008-12-22 19:14 ` [PATCH 01/27] drivers/net: fix sparse warning: use ANSI-style function declaration Hannes Eder
2008-12-22 19:14   ` [PATCH 01/27] drivers/net: fix sparse warning: use ANSI-style Hannes Eder
2008-12-26  7:53   ` [PATCH 01/27] drivers/net: fix sparse warning: use ANSI-style function declaration David Miller
2008-12-26  7:53     ` [PATCH 01/27] drivers/net: fix sparse warning: use ANSI-style David Miller
2008-12-22 19:15 ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while a compound statement Hannes Eder
2008-12-22 19:15   ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while a Hannes Eder
2008-12-22 22:14   ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while a compound statement Krzysztof Halasa
2008-12-22 22:14     ` Krzysztof Halasa
2008-12-22 23:44     ` Håkon Løvdal
2008-12-22 23:44       ` Håkon Løvdal
2008-12-22 23:44       ` Håkon Løvdal
2008-12-23 16:31       ` Krzysztof Halasa
2008-12-23 16:31         ` Krzysztof Halasa
2008-12-23 17:26         ` Harvey Harrison
2008-12-23 17:26           ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while Harvey Harrison
2008-12-23 17:36           ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while a compound statement Krzysztof Halasa
2008-12-23 17:36             ` Krzysztof Halasa
2008-12-23 18:08             ` Linus Torvalds
2008-12-23 18:08               ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while Linus Torvalds
2008-12-23 23:18               ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while a compound statement Krzysztof Halasa
2008-12-23 23:18                 ` Krzysztof Halasa
2008-12-23 23:38                 ` Linus Torvalds
2008-12-23 23:38                   ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while Linus Torvalds
2008-12-24  2:03                   ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while a compound statement Krzysztof Halasa
2008-12-24  2:03                     ` Krzysztof Halasa
2008-12-24  2:10                     ` Linus Torvalds
2008-12-24  2:10                       ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while Linus Torvalds
2008-12-25 17:02                       ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while a compound statement Krzysztof Halasa
2008-12-25 17:02                         ` Krzysztof Halasa
2008-12-25  6:17                     ` Junio C Hamano
2008-12-25  6:17                       ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while a Junio C Hamano
2008-12-29 14:35                   ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while a compound statement Hannes Eder
2008-12-29 14:35                     ` Hannes Eder
2008-12-26  7:55   ` David Miller
2008-12-26  7:55     ` [PATCH 02/27] drivers/net: fix sparse warnings: make do-while David Miller
2008-12-22 19:15 ` [PATCH 03/27] drivers/net: fix sparse warning: returning void-valued expression Hannes Eder
2008-12-22 19:15   ` [PATCH 03/27] drivers/net: fix sparse warning: returning void-valued Hannes Eder
2008-12-26  0:17   ` [PATCH 03/27] drivers/net: fix sparse warning: returning void-valued expression David Miller
2008-12-26  0:17     ` [PATCH 03/27] drivers/net: fix sparse warning: returning David Miller
2008-12-26 14:39     ` [PATCH 03/27] drivers/net: fix sparse warning: returning void-valued expression Hannes Eder
2008-12-26 14:39       ` Hannes Eder
2008-12-26 19:59     ` Randy Dunlap
2008-12-26 19:59       ` [PATCH 03/27] drivers/net: fix sparse warning: returning Randy Dunlap
2008-12-27 19:11       ` [PATCH 03/27] drivers/net: fix sparse warning: returning void-valued expression Hannes Eder
2008-12-27 19:11         ` Hannes Eder
2008-12-27 19:20         ` Sam Ravnborg
2008-12-27 19:20           ` Sam Ravnborg
2008-12-27 21:38           ` [PATCH] Makefile: disable sparse warning "returning void-valued expression" Hannes Eder
2008-12-27 21:38             ` Hannes Eder
2008-12-27 21:57             ` Sam Ravnborg
2008-12-27 21:57               ` Sam Ravnborg
2008-12-26  7:56   ` [PATCH 03/27] drivers/net: fix sparse warning: returning void-valued expression David Miller
2008-12-26  7:56     ` [PATCH 03/27] drivers/net: fix sparse warning: returning David Miller
2008-12-22 19:15 ` [PATCH 04/27] drivers/net: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:15   ` Hannes Eder
2008-12-26  7:57   ` David Miller
2008-12-26  7:57     ` [PATCH 04/27] drivers/net: fix sparse warnings: make symbols David Miller
2008-12-22 19:15 ` [PATCH 05/27] drivers/net/arcnet: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:15   ` [PATCH 05/27] drivers/net/arcnet: fix sparse warnings: make symbols Hannes Eder
2008-12-26  7:57   ` [PATCH 05/27] drivers/net/arcnet: fix sparse warnings: make symbols static David Miller
2008-12-26  7:57     ` [PATCH 05/27] drivers/net/arcnet: fix sparse warnings: make David Miller
2008-12-22 19:15 ` [PATCH 06/27] drivers/net/atlx: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:15   ` [PATCH 06/27] drivers/net/atlx: fix sparse warnings: make symbols Hannes Eder
2008-12-26  7:58   ` [PATCH 06/27] drivers/net/atlx: fix sparse warnings: make symbols static David Miller
2008-12-26  7:58     ` [PATCH 06/27] drivers/net/atlx: fix sparse warnings: make David Miller
2008-12-22 19:15 ` [PATCH 07/27] drivers/net/bonding: fix sparse warnings: move decls to header file Hannes Eder
2008-12-22 19:15   ` [PATCH 07/27] drivers/net/bonding: fix sparse warnings: move decls to Hannes Eder
2008-12-26  7:59   ` [PATCH 07/27] drivers/net/bonding: fix sparse warnings: move decls to header file David Miller
2008-12-26  7:59     ` [PATCH 07/27] drivers/net/bonding: fix sparse warnings: move David Miller
2008-12-22 19:16 ` [PATCH 08/27] drivers/net/cxgb3: comment out dead code Hannes Eder
2008-12-22 19:16   ` Hannes Eder
2008-12-26  7:59   ` David Miller
2008-12-26  7:59     ` David Miller
2008-12-22 19:16 ` [PATCH 09/27] drivers/net/e1000e: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:16   ` [PATCH 09/27] drivers/net/e1000e: fix sparse warnings: make symbols Hannes Eder
2008-12-22 19:16 ` [PATCH 10/27] drivers/net/enic: fix sparse warning: make symbol static Hannes Eder
2008-12-22 19:16   ` Hannes Eder
2008-12-26  8:01   ` David Miller
2008-12-26  8:01     ` [PATCH 10/27] drivers/net/enic: fix sparse warning: make David Miller
2008-12-22 19:16 ` [PATCH 11/27] drivers/net/igb: remove dead code (function 'igb_read_pci_cfg') Hannes Eder
2008-12-22 19:16   ` [PATCH 11/27] drivers/net/igb: remove dead code (function Hannes Eder
2008-12-22 22:30   ` [PATCH 11/27] drivers/net/igb: remove dead code (function 'igb_read_pci_cfg') Jeff Kirsher
2008-12-22 22:30     ` Jeff Kirsher
2008-12-26  8:03     ` David Miller
2008-12-26  8:03       ` [PATCH 11/27] drivers/net/igb: remove dead code (function David Miller
2008-12-22 19:16 ` [PATCH 12/27] drivers/net/irda: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:16   ` [PATCH 12/27] drivers/net/irda: fix sparse warnings: make symbols Hannes Eder
2008-12-26  8:03   ` [PATCH 12/27] drivers/net/irda: fix sparse warnings: make symbols static David Miller
2008-12-26  8:03     ` [PATCH 12/27] drivers/net/irda: fix sparse warnings: make David Miller
2008-12-22 19:16 ` Hannes Eder [this message]
2008-12-22 19:16   ` [PATCH 13/27] drivers/net/ixgbe: fix sparse warnings: make symbols Hannes Eder
2008-12-26  8:04   ` [PATCH 13/27] drivers/net/ixgbe: fix sparse warnings: make symbols static David Miller
2008-12-26  8:04     ` [PATCH 13/27] drivers/net/ixgbe: fix sparse warnings: make David Miller
2008-12-22 19:16 ` [PATCH 14/27] drivers/net/netxen: fix sparse warnings: use NULL pointer instead of plain integer Hannes Eder
2008-12-22 19:16   ` [PATCH 14/27] drivers/net/netxen: fix sparse warnings: use NULL Hannes Eder
2008-12-26  8:04   ` [PATCH 14/27] drivers/net/netxen: fix sparse warnings: use NULL pointer instead of plain integer David Miller
2008-12-26  8:04     ` [PATCH 14/27] drivers/net/netxen: fix sparse warnings: use David Miller
2008-12-22 19:17 ` [PATCH 15/27] drivers/net/qlge: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:17   ` [PATCH 15/27] drivers/net/qlge: fix sparse warnings: make symbols Hannes Eder
2008-12-26  8:05   ` [PATCH 15/27] drivers/net/qlge: fix sparse warnings: make symbols static David Miller
2008-12-26  8:05     ` [PATCH 15/27] drivers/net/qlge: fix sparse warnings: make David Miller
2008-12-22 19:17 ` [PATCH 16/27] drivers/net/skfp: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:17   ` [PATCH 16/27] drivers/net/skfp: fix sparse warnings: make symbols Hannes Eder
2008-12-26  8:06   ` [PATCH 16/27] drivers/net/skfp: fix sparse warnings: make symbols static David Miller
2008-12-26  8:06     ` [PATCH 16/27] drivers/net/skfp: fix sparse warnings: make David Miller
2008-12-22 19:17 ` [PATCH 17/27] drivers/net/tokenring: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:17   ` [PATCH 17/27] drivers/net/tokenring: fix sparse warnings: make Hannes Eder
2008-12-26  8:07   ` [PATCH 17/27] drivers/net/tokenring: fix sparse warnings: make symbols static David Miller
2008-12-26  8:07     ` [PATCH 17/27] drivers/net/tokenring: fix sparse warnings: make David Miller
2008-12-22 19:17 ` [PATCH 18/27] drivers/net/tulip: fix sparse warnings: make do-while a compound statement Hannes Eder
2008-12-22 19:17   ` [PATCH 18/27] drivers/net/tulip: fix sparse warnings: make do-while a Hannes Eder
2008-12-26  8:07   ` [PATCH 18/27] drivers/net/tulip: fix sparse warnings: make do-while a compound statement David Miller
2008-12-26  8:07     ` [PATCH 18/27] drivers/net/tulip: fix sparse warnings: make David Miller
2008-12-22 19:17 ` [PATCH 19/27] drivers/net/usb: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:17   ` [PATCH 19/27] drivers/net/usb: fix sparse warnings: make symbols Hannes Eder
2008-12-26  8:08   ` [PATCH 19/27] drivers/net/usb: fix sparse warnings: make symbols static David Miller
2008-12-26  8:08     ` [PATCH 19/27] drivers/net/usb: fix sparse warnings: make David Miller
2008-12-22 19:17 ` [PATCH 20/27] drivers/net/wan: fix sparse warnings: make do-while a compound statement Hannes Eder
2008-12-22 19:17   ` [PATCH 20/27] drivers/net/wan: fix sparse warnings: make do-while a Hannes Eder
2008-12-22 22:09   ` [PATCH 20/27] drivers/net/wan: fix sparse warnings: make do-while a compound statement Krzysztof Halasa
2008-12-22 22:09     ` Krzysztof Halasa
2008-12-22 19:18 ` [PATCH 21/27] drivers/net/wan: fix sparse warning: make symbol static Hannes Eder
2008-12-22 19:18   ` Hannes Eder
2008-12-26  8:11   ` David Miller
2008-12-26  8:11     ` [PATCH 21/27] drivers/net/wan: fix sparse warning: make symbol David Miller
2008-12-22 19:18 ` [PATCH 22/27] drivers/net/wan/z85230.c: fix sparse warnings: un-EXPORT symbols Hannes Eder
2008-12-22 19:18   ` [PATCH 22/27] drivers/net/wan/z85230.c: fix sparse warnings: Hannes Eder
2008-12-26  8:12   ` [PATCH 22/27] drivers/net/wan/z85230.c: fix sparse warnings: un-EXPORT symbols David Miller
2008-12-26  8:12     ` [PATCH 22/27] drivers/net/wan/z85230.c: fix sparse warnings: David Miller
2008-12-22 19:18 ` [PATCH 23/27] drivers/net/wireless: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:18   ` [PATCH 23/27] drivers/net/wireless: fix sparse warnings: make symbols Hannes Eder
2008-12-26  8:13   ` [PATCH 23/27] drivers/net/wireless: fix sparse warnings: make symbols static David Miller
2008-12-26  8:13     ` [PATCH 23/27] drivers/net/wireless: fix sparse warnings: make David Miller
2008-12-22 19:18 ` [PATCH 24/27] drivers/net/wireless/ath9k: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:18   ` [PATCH 24/27] drivers/net/wireless/ath9k: fix sparse warnings: make Hannes Eder
2008-12-22 19:18 ` [PATCH 25/27] drivers/net/wireless/b43: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:18   ` [PATCH 25/27] drivers/net/wireless/b43: fix sparse warnings: make Hannes Eder
2008-12-26  8:13   ` [PATCH 25/27] drivers/net/wireless/b43: fix sparse warnings: make symbols static David Miller
2008-12-26  8:13     ` [PATCH 25/27] drivers/net/wireless/b43: fix sparse warnings: David Miller
2008-12-22 19:18 ` [PATCH 26/27] drivers/net/wireless/ipw2x00: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:18   ` [PATCH 26/27] drivers/net/wireless/ipw2x00: fix sparse warnings: make Hannes Eder
2008-12-26  8:14   ` [PATCH 26/27] drivers/net/wireless/ipw2x00: fix sparse warnings: make symbols static David Miller
2008-12-26  8:14     ` [PATCH 26/27] drivers/net/wireless/ipw2x00: fix sparse David Miller
2008-12-22 19:19 ` [PATCH 27/27] drivers/net/wireless/prism54: fix sparse warnings: make symbols static Hannes Eder
2008-12-22 19:19   ` [PATCH 27/27] drivers/net/wireless/prism54: fix sparse warnings: make Hannes Eder
2008-12-26  8:15   ` [PATCH 27/27] drivers/net/wireless/prism54: fix sparse warnings: make symbols static David Miller
2008-12-26  8:15     ` [PATCH 27/27] drivers/net/wireless/prism54: fix sparse David Miller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20081222191650.11807.36848.stgit@vmbox.hanneseder.net \
    --to=hannes@hanneseder.net \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.