Profitez de 50% de réduction* pour retrouver la ligne avec Weight Watchers

2012-06-28 Thread Weight Watchers par Duano
Pour voir le message, veuillez utiliser un lecteur de mail compatible HTML

Lien miroir : 
http://m10-fr.com/mc10_m/YT0xMyZiPTE0NTI2JmM9NDgzNjEyJmQ9MjAxMi0wNi0yNyAyMjozMDowMSZlPTEmaD0xNDUyNSZmPTE0NTI2Jmc9MTQ1MjY=

Lien de désinscription : 
http://m10-fr.com/mc10_unsub/YT0xMyZiPTE0NTI2JmM9NDgzNjEyJmQ9MjAxMi0wNi0yNyAyMjozMDowMSZlPTEmaD0xNDUyNSZmPTE0NTI2Jmc9MTQ1MjY=


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


[SPAM] Proposal Attached

2012-06-28 Thread Brandy Collins
Attached is the requested brochure and video including pricing. 

I am contacting you regarding printing and managing your company's business 
cards. We look forward to the opportunity to work with you. Please reply 
through the attachment.
 
Sincerely,

Brandy Collins
Online Business Management





















Click This Link to Stop Future Messages 
mailto:listservi...@gmx.com?subject=unsubscribe%3a%20spi-devel-gene...@lists.sourceforge.net

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


[PATCH 1/2] spi/s3c64xx: Convert to devm_request_and_ioremap()

2012-06-28 Thread Mark Brown
Saves some error handling and a small amount of code.

Signed-off-by: Mark Brown broo...@opensource.wolfsonmicro.com
---
 drivers/spi/spi-s3c64xx.c |   25 +
 1 file changed, 1 insertion(+), 24 deletions(-)

diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c
index f4e2341..b7aeb5d 100644
--- a/drivers/spi/spi-s3c64xx.c
+++ b/drivers/spi/spi-s3c64xx.c
@@ -1028,19 +1028,7 @@ static int __init s3c64xx_spi_probe(struct 
platform_device *pdev)
/* the spi-mode bits understood by this driver: */
master-mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
 
-   if (request_mem_region(mem_res-start,
-   resource_size(mem_res), pdev-name) == NULL) {
-   dev_err(pdev-dev, Req mem region failed\n);
-   ret = -ENXIO;
-   goto err0;
-   }
-
-   sdd-regs = ioremap(mem_res-start, resource_size(mem_res));
-   if (sdd-regs == NULL) {
-   dev_err(pdev-dev, Unable to remap IO\n);
-   ret = -ENXIO;
-   goto err1;
-   }
+   sdd-regs = devm_request_and_ioremap(pdev-dev, mem_res);
 
if (sci-cfg_gpio == NULL || sci-cfg_gpio(pdev)) {
dev_err(pdev-dev, Unable to config gpio\n);
@@ -1124,10 +1112,6 @@ err4:
clk_put(sdd-clk);
 err3:
 err2:
-   iounmap((void *) sdd-regs);
-err1:
-   release_mem_region(mem_res-start, resource_size(mem_res));
-err0:
platform_set_drvdata(pdev, NULL);
spi_master_put(master);
 
@@ -1138,7 +1122,6 @@ static int s3c64xx_spi_remove(struct platform_device 
*pdev)
 {
struct spi_master *master = spi_master_get(platform_get_drvdata(pdev));
struct s3c64xx_spi_driver_data *sdd = spi_master_get_devdata(master);
-   struct resource *mem_res;
 
pm_runtime_disable(pdev-dev);
 
@@ -1154,12 +1137,6 @@ static int s3c64xx_spi_remove(struct platform_device 
*pdev)
clk_disable(sdd-clk);
clk_put(sdd-clk);
 
-   iounmap((void *) sdd-regs);
-
-   mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-   if (mem_res != NULL)
-   release_mem_region(mem_res-start, resource_size(mem_res));
-
platform_set_drvdata(pdev, NULL);
spi_master_put(master);
 
-- 
1.7.10


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


[PATCH 2/2] spi/s3c64xx: Expand S3C64XX_SPI_{DE, }ACT macros at call sites

2012-06-28 Thread Mark Brown
They have very few users and they're both just doing a single register
write so the advantage of having the macro is a bit limited. An inline
function might make sense but it's as easy to just do the writes directly.

Signed-off-by: Mark Brown broo...@opensource.wolfsonmicro.com
---
 drivers/spi/spi-s3c64xx.c |   12 
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c
index b7aeb5d..3514ef9 100644
--- a/drivers/spi/spi-s3c64xx.c
+++ b/drivers/spi/spi-s3c64xx.c
@@ -74,11 +74,6 @@
 #define S3C64XX_SPI_SLAVE_AUTO (11)
 #define S3C64XX_SPI_SLAVE_SIG_INACT(10)
 
-#define S3C64XX_SPI_ACT(c) writel(0, (c)-regs + S3C64XX_SPI_SLAVE_SEL)
-
-#define S3C64XX_SPI_DEACT(c) writel(S3C64XX_SPI_SLAVE_SIG_INACT, \
-   (c)-regs + S3C64XX_SPI_SLAVE_SEL)
-
 #define S3C64XX_SPI_INT_TRAILING_EN(16)
 #define S3C64XX_SPI_INT_RX_OVERRUN_EN  (15)
 #define S3C64XX_SPI_INT_RX_UNDERRUN_EN (14)
@@ -712,14 +707,15 @@ static int s3c64xx_spi_transfer_one_message(struct 
spi_master *master,
enable_cs(sdd, spi);
 
/* Start the signals */
-   S3C64XX_SPI_ACT(sdd);
+   writel(0, sdd-regs + S3C64XX_SPI_SLAVE_SEL);
 
spin_unlock_irqrestore(sdd-lock, flags);
 
status = wait_for_xfer(sdd, xfer, use_dma);
 
/* Quiese the signals */
-   S3C64XX_SPI_DEACT(sdd);
+   writel(S3C64XX_SPI_SLAVE_SIG_INACT,
+  sdd-regs + S3C64XX_SPI_SLAVE_SEL);
 
if (status) {
dev_err(spi-dev, I/O Error: 
@@ -923,7 +919,7 @@ static void s3c64xx_spi_hwinit(struct 
s3c64xx_spi_driver_data *sdd, int channel)
 
sdd-cur_speed = 0;
 
-   S3C64XX_SPI_DEACT(sdd);
+   writel(S3C64XX_SPI_SLAVE_SIG_INACT, sdd-regs + S3C64XX_SPI_SLAVE_SEL);
 
/* Disable Interrupts - we use Polling if not DMA mode */
writel(0, regs + S3C64XX_SPI_INT_EN);
-- 
1.7.10


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


SOLDES TonyBoy ! Votre enfant mérite TonyBoy.

2012-06-28 Thread TonyBoy
TonyBoy: Soldes Exceptionnels jusqu'au 31 juillet  Si vous ne pouvez 
pas visualiser ce message,  consulter notre version en ligne. 
TonyBoy : Soldes Exceptionnels jusqu'au 31 juillet ! J'en profite : 
http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjFfcStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIT
TonyBoy - Since 1982 : Collection / Bon Plans / Actus / Historique

http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjKvcStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIQ
Du 27 juin au 31 juillet, soldes exceptionnels sur TonyB !

http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjK_cStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIR
Jusqu'à -70pourcent

http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjKPcStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIW
J'en profite

http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjKfcStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIX
J'en profite

http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjLvcStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIU
Chemise Manches courtes

http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjL_cStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIV
Ensemble chemise/Gilet/Bermuda - 1629

http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjLPcStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIa
Bermuda 1597

http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjLfcStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIb
Short de bain - 1692

http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjIvcStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIY
Rendez vous sur notre site pour profiter d'une livraison 48H offerte

http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjI_cStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIZ
J'en profite

http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjIPcStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIe
TonyB : Soldes exceptionnels

http://p5trc.emv2.com/HS?a=ENX7CqmVXCyi8SA9MKJGC3LnGHxKLFLjIfcStGb5lw8W0bBhOG5mpqVsje_HhdA5HlIf
 Conformément à la loi Informatique et Libertés du 06 Janvier 1978, 
vous bénéficiez d'un droit d'accès, de rectification, de modification 
et de suppression aux données vous concernant.

 Vous avez la possibilité de vous retirer de notre liste d'envoi de 
mails par l'intermediaire de  ce raccourci. 


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


[SPAM] Soldes : Toute la beauté jusqu'à moins 60 pourcent

2012-06-28 Thread Yves Rocher par Duano
Pour voir le message, veuillez utiliser un lecteur de mail compatible HTML

Lien miroir : 
http://m10-fr.com/mc10_m/YT0xMyZiPTE0NjA0JmM9NDgzNjEyJmQ9MjAxMi0wNi0yOCAxMzoyMDowMSZlPTEmaD0xNDYwMyZmPTE0NjA0Jmc9MTQ2MDQ=

Lien de désinscription : 
http://m10-fr.com/mc10_unsub/YT0xMyZiPTE0NjA0JmM9NDgzNjEyJmQ9MjAxMi0wNi0yOCAxMzoyMDowMSZlPTEmaD0xNDYwMyZmPTE0NjA0Jmc9MTQ2MDQ=


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


Jusqu'à moins 70 pourcent sur les bagages et sacs

2012-06-28 Thread Lulu Castagnette par Duano
Pour voir le message, veuillez utiliser un lecteur de mail compatible HTML

Lien miroir : 
http://m10-fr.com/mc10_m/YT0xMyZiPTE0NTIzJmM9NDgzNjEyJmQ9MjAxMi0wNi0yNyAyMzoyMDowMSZlPTEmaD0xNDUyMiZmPTE0NTIzJmc9MTQ1MjM=

Lien de désinscription : 
http://m10-fr.com/mc10_unsub/YT0xMyZiPTE0NTIzJmM9NDgzNjEyJmQ9MjAxMi0wNi0yNyAyMzoyMDowMSZlPTEmaD0xNDUyMiZmPTE0NTIzJmc9MTQ1MjM=


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


Re: [PATCH 1/2] spi/s3c64xx: Convert to devm_request_and_ioremap()

2012-06-28 Thread Linus Walleij
On Thu, Jun 28, 2012 at 3:23 PM, Mark Brown
broo...@opensource.wolfsonmicro.com wrote:

 Saves some error handling and a small amount of code.

 Signed-off-by: Mark Brown broo...@opensource.wolfsonmicro.com

Elegant, monsieur.
Acked-by: Linus Walleij linus.wall...@linaro.org

I'm starting to wonder if it would not be possible to mass-convert these
using coccinelle.

Yours,
Linus Walleij

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general