From: Joe Perches <joe@perches.com>
To: linux-wireless <linux-wireless@vger.kernel.org>
Subject: Stefano Brivio's email address bounces for weeks now.
Date: Sat, 20 Nov 2010 18:53:19 -0800 [thread overview]
Message-ID: <1290307999.23282.1.camel@Joe-Laptop> (raw)
[-- Attachment #1: Type: text/plain, Size: 818 bytes --]
Is it just my email server or are you still reachable?
----- The following addresses had permanent fatal errors -----
mail@stefanobrivio.net
(reason: 554 5.7.1 <mail@stefanobrivio.net>: Relay access denied)
(expanded from: <stefano.brivio@polimi.it>)
----- Transcript of session follows -----
... while talking to st3.endoftheinternet.org.:
<<< 421 [XMail 1.26 ESMTP Server] - Server too busy, retry later
... while talking to smtp-avas.seeweb.it.:
>>> DATA
<<< 554 5.7.1 <mail@stefanobrivio.net>: Relay access denied
554 5.0.0 Service unavailable
<<< 554 5.5.1 Error: no valid recipients
email message attachment
-------- Forwarded Message --------
From: Joe Perches <joe@perches.com>
To: Stefano Brivio <stefano.brivio@polimi.it>
--------------------------------------------------------------------
[-- Attachment #2: Type: message/delivery-status, Size: 467 bytes --]
[-- Attachment #3: Type: message/rfc822, Size: 2711 bytes --]
From: Joe Perches <joe@perches.com>
To: Stefano Brivio <stefano.brivio@polimi.it>
Cc: "John W. Linville" <linville@tuxdriver.com>, linux-wireless@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 55/62] b43: Use static const
Date: Sat, 20 Nov 2010 18:38:56 -0800
Message-ID: <515c42b1b99e90575869532cfa383cadb7b66515.1290305776.git.joe@perches.com>
Using static const generally increases object text and decreases data size.
It also generally decreases overall object size.
text data bss dec hex filename
5502 56 1336 6894 1aee drivers/net/wireless/b43/phy_common.o.new
5511 56 1336 6903 1af7 drivers/net/wireless/b43/phy_common.o.old
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/wireless/b43/phy_common.c | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/drivers/net/wireless/b43/phy_common.c b/drivers/net/wireless/b43/phy_common.c
index 7b2ea67..fa7f83f 100644
--- a/drivers/net/wireless/b43/phy_common.c
+++ b/drivers/net/wireless/b43/phy_common.c
@@ -427,9 +427,11 @@ void b43_phyop_switch_analog_generic(struct b43_wldev *dev, bool on)
/* http://bcm-v4.sipsolutions.net/802.11/PHY/Cordic */
struct b43_c32 b43_cordic(int theta)
{
- u32 arctg[] = { 2949120, 1740967, 919879, 466945, 234379, 117304,
- 58666, 29335, 14668, 7334, 3667, 1833, 917, 458,
- 229, 115, 57, 29, };
+ static const u32 arctg[] = {
+ 2949120, 1740967, 919879, 466945, 234379, 117304,
+ 58666, 29335, 14668, 7334, 3667, 1833,
+ 917, 458, 229, 115, 57, 29,
+ };
u8 i;
s32 tmp;
s8 signx = 1;
--
1.7.3.2.245.g03276.dirty
next reply other threads:[~2010-11-21 2:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-21 2:53 Joe Perches [this message]
2010-11-21 4:01 ` Stefano Brivio's email address bounces for weeks now Larry Finger
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=1290307999.23282.1.camel@Joe-Laptop \
--to=joe@perches.com \
--cc=linux-wireless@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 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).