Shopping Promod en soldes : vous allez adorer !

2013-06-28 Thread Promod par Nlpromos
(Promod): http://clk.tradedoubler.com/click?p=215247&a=1905389&g=21301288&url=http://clk.t radedoubler.com/click?p=201550&a=2291900&g=20959146&url=http://www.promod.fr?UO= AVM&utm_source=avent_media&utm_medium=email_ext&utm_campaign=emailing COLLECTION: http://clk.tradedoubler.com/click?p=215247&

[SPAM] Jusqu'a 60 pourcent de reduction et livraison offerte

2013-06-28 Thread Lot 18 - Ventes Privees de Vins fins
(http://obfm40.com/mru1xv0tyy5xdddozg/index0.html) (http://obfm40.com/p4ubuvi4yuaf0lyowj/index1.html) (http://obfm40.com/r5uf2vf3y5xxe0lf4q/index2.html) (http://obfm40.com/5nu0hvkoyxjfw2sfno/index3.html) (http://obfm40.com/j5al22eabb1xl1lq2j/index4.html) (http://obfm40.com/qnajh2cjbzgf2csqtg/index

RE: [PATCH 3/8] spi: spi-ep93xx: always handle transfer specific settings

2013-06-28 Thread H Hartley Sweeten
On Friday, June 28, 2013 4:18 PM, Ryan Mallon wrote: > On 29/06/13 04:43, H Hartley Sweeten wrote: >> __spi_async(), which starts every SPI message transfer, initializes >> the bits_per_word and max speed for every transfer in the message. >> Since the conditional test in ep93xx_spi_process_transfe

Soldes : jusqu'à -60% dès maintenant

2013-06-28 Thread Vertbaudet par nlpromos
Si le message ne s'affiche pas correctement merci de suivre ce lien: http://news.teradoo.com/re?l=Bqgpfs3I7gfk57dIhii0tib7I&u=http%3A%2F%2Fnews.teradoo.com%2Fpublic%2Fread_message.jsp%3Ftsp%3D1372462639620%26custid%3D16444%26uid%3D16231069273%26sig%3DCACPHKIAPCPEIHLH%26mid%3D1600181283&s=LNIEHIEC

Re: [PATCH 4/8] spi: spi-ep93xx: remove bits_per_word() helper

2013-06-28 Thread Ryan Mallon
On 29/06/13 04:44, H Hartley Sweeten wrote: > This inline helper function is only used to determine the bus width > of the current transfer (8 or 16 bit). Add a bool flag to the private > structure and set it appropriately for each transfer. > > Signed-off-by: H Hartley Sweeten > Cc: Ryan Mallon

Re: [PATCH 3/8] spi: spi-ep93xx: always handle transfer specific settings

2013-06-28 Thread Ryan Mallon
On 29/06/13 04:43, H Hartley Sweeten wrote: > __spi_async(), which starts every SPI message transfer, initializes > the bits_per_word and max speed for every transfer in the message. > Since the conditional test in ep93xx_spi_process_transfer() will > always succeed just remove it and always call

Re: [PATCH 1/8] spi: spi-ep93xx: use read,write instead of __raw_* variants

2013-06-28 Thread Ryan Mallon
On 29/06/13 04:42, H Hartley Sweeten wrote: > The memory resource used by this driver is ioremap()'d and the normal > read,write calls can be used instead of the __raw_* variants. > > Remove the inline read,write helpers and just do the read,write > directly in the callers. > > Signed-off-by: H

[PATCH 8/8] spi: spi-ep93xx: convert to the queued driver infrastructure

2013-06-28 Thread H Hartley Sweeten
The SPI core provides infrastructure for standard message queueing. Use that instead of handling it in the driver. Signed-off-by: H Hartley Sweeten Cc: Ryan Mallon Cc: Mika Westerberg Cc: Mark Brown Cc: Grant Likely --- drivers/spi/spi-ep93xx.c | 164 ++---

[PATCH 6/8] spi: spi-ep93xx: don't bother calculating the divisors in ep93xx_spi_setup()

2013-06-28 Thread H Hartley Sweeten
The divisors needed to generate the SPI clock are calculated per transfer based on the t->speed_hz. There is no reason to calculate them in ep93xx_spi_setup(). Signed-off-by: H Hartley Sweeten Cc: Ryan Mallon Cc: Mika Westerberg Cc: Mark Brown Cc: Grant Likely --- drivers/spi/spi-ep93xx.c |

Les soldes parfums moins cher

2013-06-28 Thread Parfums moins cher
Si le message ne s'affiche pas correctement merci de suivre ce lien: http://news.teradoo.com/re?l=BqgpfemI7gfk57dIhihr3c0nI&u=http%3A%2F%2Fnews.teradoo.com%2Fpublic%2Fread_message.jsp%3Ftsp%3D1372446301865%26custid%3D16444%26uid%3D16231069273%26sig%3DHKJHKFHJEIPDFLPF%26mid%3D1600180798&s=GBGMJDCE

[PATCH 2/8] spi: spi-ep93xx: use bits_per_word_mask

2013-06-28 Thread H Hartley Sweeten
This driver supports 16 to 4 bits per work. Set the bits_per_word_mask to allows the spi core to handle validation. Signed-off-by: H Hartley Sweeten Cc: Ryan Mallon Cc: Mika Westerberg Cc: Mark Brown Cc: Grant Likely --- drivers/spi/spi-ep93xx.c | 11 +-- 1 file changed, 1 insertion(

[PATCH 3/8] spi: spi-ep93xx: always handle transfer specific settings

2013-06-28 Thread H Hartley Sweeten
__spi_async(), which starts every SPI message transfer, initializes the bits_per_word and max speed for every transfer in the message. Since the conditional test in ep93xx_spi_process_transfer() will always succeed just remove it and always call ep93xx_spi_chip_setup() to configure the hardware for

[PATCH 0/8] spi: spi-ep93xx: tidy up and convert to queued driver infrastructure

2013-06-28 Thread H Hartley Sweeten
Do a bit of housecleaning in this driver and convert it to use the SPI queued driver infrastructure. H Hartley Sweeten (8): spi: spi-ep93xx: use read,write instead of __raw_* variants spi: spi-ep93xx: use bits_per_word_mask spi: spi-ep93xx: always handle transfer specific settings spi: spi

[PATCH 1/8] spi: spi-ep93xx: use read, write instead of __raw_* variants

2013-06-28 Thread H Hartley Sweeten
The memory resource used by this driver is ioremap()'d and the normal read,write calls can be used instead of the __raw_* variants. Remove the inline read,write helpers and just do the read,write directly in the callers. Signed-off-by: H Hartley Sweeten Cc: Ryan Mallon Cc: Mika Westerberg Cc:

[PATCH 7/8] spi: spi-ep93xx: move the clock divider calcs into ep93xx_spi_chip_setup()

2013-06-28 Thread H Hartley Sweeten
The divider values stored in the per chip data are only used to set the registers in the hardware to generate the desired SPI clock. Since these are calculated per transfer based on the t->speed_hz there is no reason keep them in the per chip data. Move the ep93xx_spi_calc_divisors() call into ep9

[PATCH 5/8] spi: spi-ep93xx: remove 'dss' from per chip private data

2013-06-28 Thread H Hartley Sweeten
This value is only needed to set the bits per word for each transfer of a message. There is no reason to set the value in ep93xx_spi_enable() because ep93xx_spi_process_transfer() sets it again for each transfer. Just pass the t->bits_per_word directly to ep93xx_spi_chip_setup() in ep93xx_spi_proc

[PATCH 4/8] spi: spi-ep93xx: remove bits_per_word() helper

2013-06-28 Thread H Hartley Sweeten
This inline helper function is only used to determine the bus width of the current transfer (8 or 16 bit). Add a bool flag to the private structure and set it appropriately for each transfer. Signed-off-by: H Hartley Sweeten Cc: Ryan Mallon Cc: Mika Westerberg Cc: Mark Brown Cc: Grant Likely

[SPAM] 海关三大质疑解析与应对

2013-06-28 Thread 请转需求人员
“海关三大质疑”解析与相关疑难应对策略 时间地点:2013年7月18-19日上海 时间地点:2013年8月1-2日 深圳 课程费用:2800元/人/2天,参加任意一天1500元/人(包括资料费、午餐及上下午茶点等) 课程对象:进出口企业总经理、物流、财务、进出口、报关、采购高级管理人员,基层业务人员等 咨询电话:020-80560638 0755-61287552 021-51602856 (不需要此类信件请回复电邮至tuixin2...@126.com退信) --

[SPAM] Destockage iPhone 5

2013-06-28 Thread iPhone
(http://obfm42.com/b0zwpeurtbw0qup31l/index0.html) (http://obfm42.com/0fzpsexctze2ckm3fy/index1.html)   Les enchères au centime expliquées : Est-ce vraiment possible d'économiser 95 % sur le prix de vente ? (http://obfm42.com/tbzzwehdta00iz5pcd/index2.html) (http://obfm42.com/21zm