[PATCH 3/10] cxgb3 - HW access routines - part 1

2006-12-21 Thread divy
From: Divy Le Ray [EMAIL PROTECTED] This patch implements the HW access routines for the Chelsio T3 network adapter's driver. This patch is split. This is the first part. Signed-off-by: Divy Le Ray [EMAIL PROTECTED] --- drivers/net/cxgb3/t3_hw.c | 3354

[PATCH 3/10] cxgb3 - HW access routines - part 1

2006-12-20 Thread divy
From: Divy Le Ray [EMAIL PROTECTED] This patch implements the HW access routines for the Chelsio T3 network adapter's driver. This patch is split. This is the first part. Signed-off-by: Divy Le Ray [EMAIL PROTECTED] --- drivers/net/cxgb3/t3_hw.c | 3353

[PATCH 3/10] cxgb3 - [PATCH 3/10] cxgb3 - HW access routines - part 1

2006-12-13 Thread divy
From: Divy Le Ray [EMAIL PROTECTED] [PATCH 3/10] cxgb3 - HW access routines - part 1 This patch implements the HW access routines for the Chelsio T3 network adapter's driver. This patch is split. This is the first part. Signed-off-by: Divy Le Ray [EMAIL PROTECTED] --- drivers/net/cxgb3/t3_hw.c

[PATCH 3/10] cxgb3 - HW access routines - part 1

2006-12-13 Thread divy
From: Divy Le Ray [EMAIL PROTECTED] [PATCH 3/10] cxgb3 - HW access routines - part 1 This patch implements the HW access routines for the Chelsio T3 network adapter's driver. This patch is split. This is the first part. Signed-off-by: Divy Le Ray [EMAIL PROTECTED] --- drivers/net/cxgb3/t3_hw.c

Re: [LIKELY_SPAM][PATCH 3/10] cxgb3 - [PATCH 3/10] cxgb3 - HW access routines - part 1

2006-12-13 Thread Divy Le Ray
I obviously managed to mess up the subject. The patch with proper subject is reposted. Divy From: Divy Le Ray [EMAIL PROTECTED] [PATCH 3/10] cxgb3 - HW access routines - part 1 This patch implements the HW access routines for the Chelsio T3 network adapter's driver. This patch is split

Re: [PATCH 3/10] cxgb3 - HW access routines - part 1

2006-12-08 Thread Jan Engelhardt
On Dec 7 2006 19:25, [EMAIL PROTECTED] wrote: +void t3_set_reg_field(struct adapter *adapter, unsigned int addr, u32 mask, +u32 val) +{ + u32 v = t3_read_reg(adapter, addr) ~mask; + + t3_write_reg(adapter, addr, v | val); + (void)t3_read_reg(adapter, addr);