drivers/net/ethernet/tundra/tsi108_eth.c: delete double assignment
Delete successive assignments to the same location. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression i; @@ *i = ...; i = ...; // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									3f0a1b58ae
								
							
						
					
					
						commit
						e8c75e2c1c
					
				| @ -1358,7 +1358,6 @@ static int tsi108_open(struct net_device *dev) | ||||
| 			break; | ||||
| 		} | ||||
| 
 | ||||
| 		data->rxskbs[i] = skb; | ||||
| 		data->rxskbs[i] = skb; | ||||
| 		data->rxring[i].buf0 = virt_to_phys(data->rxskbs[i]->data); | ||||
| 		data->rxring[i].misc = TSI108_RX_OWN | TSI108_RX_INT; | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user