atl1e: remove the unneeded (struct atl1e_adapter *)
Remove the unneeded (struct atl1e_adapter *) casts, for hw->adapter already has type atl1e_adapter *. Signed-off-by: Jie Yang <jie.yang@atheros.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
parent
ac7198bb12
commit
a4e77d063d
|
@ -397,7 +397,7 @@ static int atl1e_phy_setup_autoneg_adv(struct atl1e_hw *hw)
|
||||||
*/
|
*/
|
||||||
int atl1e_phy_commit(struct atl1e_hw *hw)
|
int atl1e_phy_commit(struct atl1e_hw *hw)
|
||||||
{
|
{
|
||||||
struct atl1e_adapter *adapter = (struct atl1e_adapter *)hw->adapter;
|
struct atl1e_adapter *adapter = hw->adapter;
|
||||||
struct pci_dev *pdev = adapter->pdev;
|
struct pci_dev *pdev = adapter->pdev;
|
||||||
int ret_val;
|
int ret_val;
|
||||||
u16 phy_data;
|
u16 phy_data;
|
||||||
|
@ -431,7 +431,7 @@ int atl1e_phy_commit(struct atl1e_hw *hw)
|
||||||
|
|
||||||
int atl1e_phy_init(struct atl1e_hw *hw)
|
int atl1e_phy_init(struct atl1e_hw *hw)
|
||||||
{
|
{
|
||||||
struct atl1e_adapter *adapter = (struct atl1e_adapter *)hw->adapter;
|
struct atl1e_adapter *adapter = hw->adapter;
|
||||||
struct pci_dev *pdev = adapter->pdev;
|
struct pci_dev *pdev = adapter->pdev;
|
||||||
s32 ret_val;
|
s32 ret_val;
|
||||||
u16 phy_val;
|
u16 phy_val;
|
||||||
|
@ -525,7 +525,7 @@ int atl1e_phy_init(struct atl1e_hw *hw)
|
||||||
*/
|
*/
|
||||||
int atl1e_reset_hw(struct atl1e_hw *hw)
|
int atl1e_reset_hw(struct atl1e_hw *hw)
|
||||||
{
|
{
|
||||||
struct atl1e_adapter *adapter = (struct atl1e_adapter *)hw->adapter;
|
struct atl1e_adapter *adapter = hw->adapter;
|
||||||
struct pci_dev *pdev = adapter->pdev;
|
struct pci_dev *pdev = adapter->pdev;
|
||||||
|
|
||||||
u32 idle_status_data = 0;
|
u32 idle_status_data = 0;
|
||||||
|
|
Loading…
Reference in New Issue