Lines Matching refs:r8152

847 struct r8152;
852 struct r8152 *context;
860 struct r8152 *context;
867 struct r8152 { struct
888 void (*init)(struct r8152 *tp); argument
889 int (*enable)(struct r8152 *tp);
890 void (*disable)(struct r8152 *tp);
891 void (*up)(struct r8152 *tp);
892 void (*down)(struct r8152 *tp);
893 void (*unload)(struct r8152 *tp);
894 int (*eee_get)(struct r8152 *tp, struct ethtool_eee *eee);
895 int (*eee_set)(struct r8152 *tp, struct ethtool_eee *eee);
896 bool (*in_nway)(struct r8152 *tp);
897 void (*hw_phy_cfg)(struct r8152 *tp);
898 void (*autosuspend_en)(struct r8152 *tp, bool enable);
899 void (*change_mtu)(struct r8152 *tp);
927 int (*pre_fw)(struct r8152 *tp); argument
928 int (*post_fw)(struct r8152 *tp);
1214 static void rtl_set_inaccessible(struct r8152 *tp) in rtl_set_inaccessible()
1220 static void rtl_set_accessible(struct r8152 *tp) in rtl_set_accessible()
1227 int r8152_control_msg(struct r8152 *tp, unsigned int pipe, __u8 request, in r8152_control_msg()
1299 int get_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data) in get_registers()
1323 int set_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data) in set_registers()
1341 static void rtl_set_unplug(struct r8152 *tp) in rtl_set_unplug()
1347 static int generic_ocp_read(struct r8152 *tp, u16 index, u16 size, in generic_ocp_read()
1390 static int generic_ocp_write(struct r8152 *tp, u16 index, u16 byteen, in generic_ocp_write()
1468 int pla_ocp_read(struct r8152 *tp, u16 index, u16 size, void *data) in pla_ocp_read()
1474 int pla_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data) in pla_ocp_write()
1480 int usb_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data) in usb_ocp_write()
1485 static u32 ocp_read_dword(struct r8152 *tp, u16 type, u16 index) in ocp_read_dword()
1494 static void ocp_write_dword(struct r8152 *tp, u16 type, u16 index, u32 data) in ocp_write_dword()
1501 static u16 ocp_read_word(struct r8152 *tp, u16 type, u16 index) in ocp_read_word()
1520 static void ocp_write_word(struct r8152 *tp, u16 type, u16 index, u32 data) in ocp_write_word()
1541 static u8 ocp_read_byte(struct r8152 *tp, u16 type, u16 index) in ocp_read_byte()
1558 static void ocp_write_byte(struct r8152 *tp, u16 type, u16 index, u32 data) in ocp_write_byte()
1579 static u16 ocp_reg_read(struct r8152 *tp, u16 addr) in ocp_reg_read()
1593 static void ocp_reg_write(struct r8152 *tp, u16 addr, u16 data) in ocp_reg_write()
1607 static inline void r8152_mdio_write(struct r8152 *tp, u32 reg_addr, u32 value) in r8152_mdio_write()
1612 static inline int r8152_mdio_read(struct r8152 *tp, u32 reg_addr) in r8152_mdio_read()
1617 static void sram_write(struct r8152 *tp, u16 addr, u16 data) in sram_write()
1623 static u16 sram_read(struct r8152 *tp, u16 addr) in sram_read()
1631 struct r8152 *tp = netdev_priv(netdev); in read_mii_word()
1648 struct r8152 *tp = netdev_priv(netdev); in write_mii_word()
1660 r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags);
1663 rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u32 speed, u8 duplex,
1669 struct r8152 *tp = netdev_priv(netdev); in __rtl8152_set_mac_address()
1707 static int vendor_mac_passthru_addr_read(struct r8152 *tp, struct sockaddr *sa) in vendor_mac_passthru_addr_read()
1784 static int determine_ethernet_addr(struct r8152 *tp, struct sockaddr *sa) in determine_ethernet_addr()
1821 static int set_ethernet_addr(struct r8152 *tp, bool in_resume) in set_ethernet_addr()
1844 struct r8152 *tp; in read_bulk_callback()
1912 struct r8152 *tp; in write_bulk_callback()
1956 struct r8152 *tp; in intr_callback()
2029 static void free_rx_agg(struct r8152 *tp, struct rx_agg *agg) in free_rx_agg()
2040 static struct rx_agg *alloc_rx_agg(struct r8152 *tp, gfp_t mflags) in alloc_rx_agg()
2081 static void free_all_mem(struct r8152 *tp) in free_all_mem()
2112 static int alloc_all_mem(struct r8152 *tp) in alloc_all_mem()
2187 static struct tx_agg *r8152_get_tx_agg(struct r8152 *tp) in r8152_get_tx_agg()
2212 static void r8152_csum_workaround(struct r8152 *tp, struct sk_buff *skb, in r8152_csum_workaround()
2268 static int r8152_tx_csum(struct r8152 *tp, struct tx_desc *desc, in r8152_tx_csum()
2356 static int r8152_tx_agg_fill(struct r8152 *tp, struct tx_agg *agg) in r8152_tx_agg_fill()
2452 static u8 r8152_rx_csum(struct r8152 *tp, struct rx_desc *rx_desc) in r8152_rx_csum()
2481 static inline bool rx_count_exceed(struct r8152 *tp) in rx_count_exceed()
2491 static struct rx_agg *rtl_get_free_rx(struct r8152 *tp, gfp_t mflags) in rtl_get_free_rx()
2521 static int rx_bottom(struct r8152 *tp, int budget) in rx_bottom()
2679 static void tx_bottom(struct r8152 *tp) in tx_bottom()
2718 struct r8152 *tp = from_tasklet(tp, t, tx_tl); in bottom_half()
2738 struct r8152 *tp = container_of(napi, struct r8152, napi); in r8152_poll()
2758 int r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags) in r8152_submit_rx()
2793 static void rtl_drop_queued_tx(struct r8152 *tp) in rtl_drop_queued_tx()
2815 struct r8152 *tp = netdev_priv(netdev); in rtl8152_tx_timeout()
2824 struct r8152 *tp = netdev_priv(netdev); in rtl8152_set_rx_mode()
2834 struct r8152 *tp = netdev_priv(netdev); in _rtl8152_set_rx_mode()
2900 struct r8152 *tp = netdev_priv(netdev); in rtl8152_start_xmit()
2921 static void r8152b_reset_packet_filter(struct r8152 *tp) in r8152b_reset_packet_filter()
2932 static void rtl8152_nic_reset(struct r8152 *tp) in rtl8152_nic_reset()
2980 static void set_tx_qlen(struct r8152 *tp) in set_tx_qlen()
2985 static inline u16 rtl8152_get_speed(struct r8152 *tp) in rtl8152_get_speed()
2990 static void rtl_eee_plus_en(struct r8152 *tp, bool enable) in rtl_eee_plus_en()
3002 static void rtl_set_eee_plus(struct r8152 *tp) in rtl_set_eee_plus()
3010 static void rxdy_gated_en(struct r8152 *tp, bool enable) in rxdy_gated_en()
3022 static int rtl_start_rx(struct r8152 *tp) in rtl_start_rx()
3065 static int rtl_stop_rx(struct r8152 *tp) in rtl_stop_rx()
3105 static void rtl_set_ifg(struct r8152 *tp, u16 speed) in rtl_set_ifg()
3128 static inline void r8153b_rx_agg_chg_indicate(struct r8152 *tp) in r8153b_rx_agg_chg_indicate()
3134 static int rtl_enable(struct r8152 *tp) in rtl_enable()
3163 static int rtl8152_enable(struct r8152 *tp) in rtl8152_enable()
3174 static void r8153_set_rx_early_timeout(struct r8152 *tp) in r8153_set_rx_early_timeout()
3215 static void r8153_set_rx_early_size(struct r8152 *tp) in r8153_set_rx_early_size()
3248 static int rtl8153_enable(struct r8152 *tp) in rtl8153_enable()
3279 static void rtl_disable(struct r8152 *tp) in rtl_disable()
3322 static void r8152_power_cut_en(struct r8152 *tp, bool enable) in r8152_power_cut_en()
3338 static void rtl_rx_vlan_en(struct r8152 *tp, bool enable) in rtl_rx_vlan_en()
3382 struct r8152 *tp = netdev_priv(dev); in rtl8152_set_features()
3408 static u32 __rtl_get_wol(struct r8152 *tp) in __rtl_get_wol()
3432 static void __rtl_set_wol(struct r8152 *tp, u32 wolopts) in __rtl_set_wol()
3468 static void r8153_mac_clk_speed_down(struct r8152 *tp, bool enable) in r8153_mac_clk_speed_down()
3481 static void r8156_mac_clk_spd(struct r8152 *tp, bool enable) in r8156_mac_clk_spd()
3502 static void r8153_u1u2en(struct r8152 *tp, bool enable) in r8153_u1u2en()
3514 static void r8153b_u1u2en(struct r8152 *tp, bool enable) in r8153b_u1u2en()
3527 static void r8153_u2p3en(struct r8152 *tp, bool enable) in r8153_u2p3en()
3539 static void r8153b_ups_flags(struct r8152 *tp) in r8153b_ups_flags()
3614 static void r8156_ups_flags(struct r8152 *tp) in r8156_ups_flags()
3696 static void rtl_green_en(struct r8152 *tp, bool enable) in rtl_green_en()
3710 static void r8153b_green_en(struct r8152 *tp, bool enable) in r8153b_green_en()
3725 static u16 r8153_phy_status(struct r8152 *tp, u16 desired) in r8153_phy_status()
3749 static void r8153b_ups_en(struct r8152 *tp, bool enable) in r8153b_ups_en()
3790 static void r8153c_ups_en(struct r8152 *tp, bool enable) in r8153c_ups_en()
3840 static void r8156_ups_en(struct r8152 *tp, bool enable) in r8156_ups_en()
3881 static void r8153_power_cut_en(struct r8152 *tp, bool enable) in r8153_power_cut_en()
3897 static void r8153b_power_cut_en(struct r8152 *tp, bool enable) in r8153b_power_cut_en()
3913 static void r8153_queue_wake(struct r8152 *tp, bool enable) in r8153_queue_wake()
3933 static bool rtl_can_wakeup(struct r8152 *tp) in rtl_can_wakeup()
3940 static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable) in rtl_runtime_suspend_enable()
3969 static void rtl8153_runtime_enable(struct r8152 *tp, bool enable) in rtl8153_runtime_enable()
3993 static void rtl8153b_runtime_enable(struct r8152 *tp, bool enable) in rtl8153b_runtime_enable()
4010 static void rtl8153c_runtime_enable(struct r8152 *tp, bool enable) in rtl8153c_runtime_enable()
4026 static void rtl8156_runtime_enable(struct r8152 *tp, bool enable) in rtl8156_runtime_enable()
4042 static void r8153_teredo_off(struct r8152 *tp) in r8153_teredo_off()
4082 static void rtl_reset_bmu(struct r8152 *tp) in rtl_reset_bmu()
4094 static void rtl_clear_bp(struct r8152 *tp, u16 type) in rtl_clear_bp()
4138 static inline void rtl_reset_ocp_base(struct r8152 *tp) in rtl_reset_ocp_base()
4143 static int rtl_phy_patch_request(struct r8152 *tp, bool request, bool wait) in rtl_phy_patch_request()
4180 static void rtl_patch_key_set(struct r8152 *tp, u16 key_addr, u16 patch_key) in rtl_patch_key_set()
4201 rtl_pre_ram_code(struct r8152 *tp, u16 key_addr, u16 patch_key, bool wait) in rtl_pre_ram_code()
4211 static int rtl_post_ram_code(struct r8152 *tp, u16 key_addr, bool wait) in rtl_post_ram_code()
4220 static bool rtl8152_is_fw_phy_speed_up_ok(struct r8152 *tp, struct fw_phy_speed_up *phy) in rtl8152_is_fw_phy_speed_up_ok()
4270 static bool rtl8152_is_fw_phy_ver_ok(struct r8152 *tp, struct fw_phy_ver *ver) in rtl8152_is_fw_phy_ver_ok()
4300 static bool rtl8152_is_fw_phy_fixup_ok(struct r8152 *tp, struct fw_phy_fixup *fix) in rtl8152_is_fw_phy_fixup_ok()
4331 static bool rtl8152_is_fw_phy_union_ok(struct r8152 *tp, struct fw_phy_union *phy) in rtl8152_is_fw_phy_union_ok()
4376 static bool rtl8152_is_fw_phy_nc_ok(struct r8152 *tp, struct fw_phy_nc *phy) in rtl8152_is_fw_phy_nc_ok()
4452 static bool rtl8152_is_fw_mac_ok(struct r8152 *tp, struct fw_mac *mac) in rtl8152_is_fw_mac_ok()
4592 static long rtl8152_fw_verify_checksum(struct r8152 *tp, in rtl8152_fw_verify_checksum()
4639 static long rtl8152_check_firmware(struct r8152 *tp, struct rtl_fw *rtl_fw) in rtl8152_check_firmware()
4923 static void rtl_ram_code_speed_up(struct r8152 *tp, struct fw_phy_speed_up *phy, bool wait) in rtl_ram_code_speed_up()
4985 static int rtl8152_fw_phy_ver(struct r8152 *tp, struct fw_phy_ver *phy_ver) in rtl8152_fw_phy_ver()
5006 static void rtl8152_fw_phy_fixup(struct r8152 *tp, struct fw_phy_fixup *fix) in rtl8152_fw_phy_fixup()
5037 static void rtl8152_fw_phy_union_apply(struct r8152 *tp, struct fw_phy_union *phy) in rtl8152_fw_phy_union_apply()
5069 static void rtl8152_fw_phy_nc_apply(struct r8152 *tp, struct fw_phy_nc *phy) in rtl8152_fw_phy_nc_apply()
5106 static void rtl8152_fw_mac_apply(struct r8152 *tp, struct fw_mac *mac) in rtl8152_fw_mac_apply()
5176 static void rtl8152_apply_firmware(struct r8152 *tp, bool power_cut) in rtl8152_apply_firmware()
5255 static void rtl8152_release_firmware(struct r8152 *tp) in rtl8152_release_firmware()
5265 static int rtl8152_request_firmware(struct r8152 *tp) in rtl8152_request_firmware()
5296 static void r8152_aldps_en(struct r8152 *tp, bool enable) in r8152_aldps_en()
5308 static inline void r8152_mmd_indirect(struct r8152 *tp, u16 dev, u16 reg) in r8152_mmd_indirect()
5315 static u16 r8152_mmd_read(struct r8152 *tp, u16 dev, u16 reg) in r8152_mmd_read()
5326 static void r8152_mmd_write(struct r8152 *tp, u16 dev, u16 reg, u16 data) in r8152_mmd_write()
5333 static void r8152_eee_en(struct r8152 *tp, bool enable) in r8152_eee_en()
5364 static void r8153_eee_en(struct r8152 *tp, bool enable) in r8153_eee_en()
5386 static void r8156_eee_en(struct r8152 *tp, bool enable) in r8156_eee_en()
5402 static void rtl_eee_enable(struct r8152 *tp, bool enable) in rtl_eee_enable()
5450 static void r8152b_enable_fc(struct r8152 *tp) in r8152b_enable_fc()
5461 static void rtl8152_disable(struct r8152 *tp) in rtl8152_disable()
5468 static void r8152b_hw_phy_cfg(struct r8152 *tp) in r8152b_hw_phy_cfg()
5478 static void wait_oob_link_list_ready(struct r8152 *tp) in wait_oob_link_list_ready()
5493 static void r8156b_wait_loading_flash(struct r8152 *tp) in r8156b_wait_loading_flash()
5509 static void r8152b_exit_oob(struct r8152 *tp) in r8152b_exit_oob()
5575 static void r8152b_enter_oob(struct r8152 *tp) in r8152b_enter_oob()
5616 static int r8153_pre_firmware_1(struct r8152 *tp) in r8153_pre_firmware_1()
5634 static int r8153_post_firmware_1(struct r8152 *tp) in r8153_post_firmware_1()
5646 static int r8153_pre_firmware_2(struct r8152 *tp) in r8153_pre_firmware_2()
5659 static int r8153_post_firmware_2(struct r8152 *tp) in r8153_post_firmware_2()
5687 static int r8153_post_firmware_3(struct r8152 *tp) in r8153_post_firmware_3()
5702 static int r8153b_pre_firmware_1(struct r8152 *tp) in r8153b_pre_firmware_1()
5711 static int r8153b_post_firmware_1(struct r8152 *tp) in r8153b_post_firmware_1()
5738 static int r8153c_post_firmware_1(struct r8152 *tp) in r8153c_post_firmware_1()
5753 static int r8156a_post_firmware_1(struct r8152 *tp) in r8156a_post_firmware_1()
5768 static void r8153_aldps_en(struct r8152 *tp, bool enable) in r8153_aldps_en()
5793 static void r8153_hw_phy_cfg(struct r8152 *tp) in r8153_hw_phy_cfg()
5855 static u32 r8152_efuse_read(struct r8152 *tp, u8 addr) in r8152_efuse_read()
5867 static void r8153b_hw_phy_cfg(struct r8152 *tp) in r8153b_hw_phy_cfg()
5972 static void r8153c_hw_phy_cfg(struct r8152 *tp) in r8153c_hw_phy_cfg()
5979 static void rtl8153_change_mtu(struct r8152 *tp) in rtl8153_change_mtu()
5985 static void r8153_first_init(struct r8152 *tp) in r8153_first_init()
6033 static void r8153_enter_oob(struct r8152 *tp) in r8153_enter_oob()
6105 static void rtl8153_disable(struct r8152 *tp) in rtl8153_disable()
6113 static u32 fc_pause_on_auto(struct r8152 *tp) in fc_pause_on_auto()
6118 static u32 fc_pause_off_auto(struct r8152 *tp) in fc_pause_off_auto()
6123 static void r8156_fc_parameter(struct r8152 *tp) in r8156_fc_parameter()
6132 static int rtl8156_enable(struct r8152 *tp) in rtl8156_enable()
6182 static void rtl8156_disable(struct r8152 *tp) in rtl8156_disable()
6190 static int rtl8156b_enable(struct r8152 *tp) in rtl8156b_enable()
6238 static int rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u32 speed, u8 duplex, in rtl8152_set_speed()
6379 static void rtl8152_up(struct r8152 *tp) in rtl8152_up()
6389 static void rtl8152_down(struct r8152 *tp) in rtl8152_down()
6402 static void rtl8153_up(struct r8152 *tp) in rtl8153_up()
6442 static void rtl8153_down(struct r8152 *tp) in rtl8153_down()
6463 static void rtl8153b_up(struct r8152 *tp) in rtl8153b_up()
6487 static void rtl8153b_down(struct r8152 *tp) in rtl8153b_down()
6508 static void rtl8153c_change_mtu(struct r8152 *tp) in rtl8153c_change_mtu()
6524 static void rtl8153c_up(struct r8152 *tp) in rtl8153c_up()
6591 static void rtl8156_change_mtu(struct r8152 *tp) in rtl8156_change_mtu()
6605 static void rtl8156_up(struct r8152 *tp) in rtl8156_up()
6678 static void rtl8156_down(struct r8152 *tp) in rtl8156_down()
6735 static bool rtl8152_in_nway(struct r8152 *tp) in rtl8152_in_nway()
6751 static bool rtl8153_in_nway(struct r8152 *tp) in rtl8153_in_nway()
6761 static void r8156_mdio_force_mode(struct r8152 *tp) in r8156_mdio_force_mode()
6776 static void set_carrier(struct r8152 *tp) in set_carrier()
6815 struct r8152 *tp = container_of(work, struct r8152, schedule.work); in rtl_work_func_t()
6857 struct r8152 *tp = container_of(work, struct r8152, hw_phy_work.work); in rtl_hw_phy_work_func_t()
6892 struct r8152 *tp = container_of(nb, struct r8152, pm_notifier); in rtl_notifier()
6917 struct r8152 *tp = netdev_priv(netdev); in rtl8152_open()
6972 struct r8152 *tp = netdev_priv(netdev); in rtl8152_close()
7005 static void rtl_tally_reset(struct r8152 *tp) in rtl_tally_reset()
7014 static void r8152b_init(struct r8152 *tp) in r8152b_init()
7057 static void r8153_init(struct r8152 *tp) in r8153_init()
7197 static void r8153b_init(struct r8152 *tp) in r8153b_init()
7279 static void r8153c_init(struct r8152 *tp) in r8153c_init()
7361 static void r8156_hw_phy_cfg(struct r8152 *tp) in r8156_hw_phy_cfg()
7711 static void r8156b_hw_phy_cfg(struct r8152 *tp) in r8156b_hw_phy_cfg()
8128 static void r8156_init(struct r8152 *tp) in r8156_init()
8224 static void r8156b_init(struct r8152 *tp) in r8156b_init()
8387 struct r8152 *tp = usb_get_intfdata(intf); in rtl8152_pre_reset()
8418 struct r8152 *tp = usb_get_intfdata(intf); in rtl8152_post_reset()
8457 static bool delay_autosuspend(struct r8152 *tp) in delay_autosuspend()
8480 static int rtl8152_runtime_resume(struct r8152 *tp) in rtl8152_runtime_resume()
8519 static int rtl8152_system_resume(struct r8152 *tp) in rtl8152_system_resume()
8535 static int rtl8152_runtime_suspend(struct r8152 *tp) in rtl8152_runtime_suspend()
8593 static int rtl8152_system_suspend(struct r8152 *tp) in rtl8152_system_suspend()
8617 struct r8152 *tp = usb_get_intfdata(intf); in rtl8152_suspend()
8634 struct r8152 *tp = usb_get_intfdata(intf); in rtl8152_resume()
8653 struct r8152 *tp = usb_get_intfdata(intf); in rtl8152_reset_resume()
8665 struct r8152 *tp = netdev_priv(dev); in rtl8152_get_wol()
8685 struct r8152 *tp = netdev_priv(dev); in rtl8152_set_wol()
8713 struct r8152 *tp = netdev_priv(dev); in rtl8152_get_msglevel()
8720 struct r8152 *tp = netdev_priv(dev); in rtl8152_set_msglevel()
8728 struct r8152 *tp = netdev_priv(netdev); in rtl8152_get_drvinfo()
8742 struct r8152 *tp = netdev_priv(netdev); in rtl8152_get_link_ksettings()
8783 struct r8152 *tp = netdev_priv(dev); in rtl8152_set_link_ksettings()
8867 struct r8152 *tp = netdev_priv(dev); in rtl8152_get_ethtool_stats()
8901 static int r8152_get_eee(struct r8152 *tp, struct ethtool_eee *eee) in r8152_get_eee()
8924 static int r8152_set_eee(struct r8152 *tp, struct ethtool_eee *eee) in r8152_set_eee()
8936 static int r8153_get_eee(struct r8152 *tp, struct ethtool_eee *eee) in r8153_get_eee()
8962 struct r8152 *tp = netdev_priv(net); in rtl_ethtool_get_eee()
8989 struct r8152 *tp = netdev_priv(net); in rtl_ethtool_set_eee()
9017 struct r8152 *tp = netdev_priv(dev); in rtl8152_nway_reset()
9041 struct r8152 *tp = netdev_priv(netdev); in rtl8152_get_coalesce()
9062 struct r8152 *tp = netdev_priv(netdev); in rtl8152_set_coalesce()
9109 struct r8152 *tp = netdev_priv(netdev); in rtl8152_get_tunable()
9126 struct r8152 *tp = netdev_priv(netdev); in rtl8152_set_tunable()
9162 struct r8152 *tp = netdev_priv(netdev); in rtl8152_get_ringparam()
9173 struct r8152 *tp = netdev_priv(netdev); in rtl8152_set_ringparam()
9195 struct r8152 *tp = netdev_priv(netdev); in rtl8152_get_pauseparam()
9232 struct r8152 *tp = netdev_priv(netdev); in rtl8152_set_pauseparam()
9294 struct r8152 *tp = netdev_priv(netdev); in rtl8152_ioctl()
9338 struct r8152 *tp = netdev_priv(dev); in rtl8152_change_mtu()
9398 static void rtl8152_unload(struct r8152 *tp) in rtl8152_unload()
9407 static void rtl8153_unload(struct r8152 *tp) in rtl8153_unload()
9415 static void rtl8153b_unload(struct r8152 *tp) in rtl8153b_unload()
9423 static int rtl_ops_init(struct r8152 *tp) in rtl_ops_init()
9577 static int rtl_fw_init(struct r8152 *tp) in rtl_fw_init()
9752 struct r8152 *tp; in rtl8152_probe_once()
9757 netdev = alloc_etherdev(sizeof(struct r8152)); in rtl8152_probe_once()
9982 struct r8152 *tp = usb_get_intfdata(intf); in rtl8152_disconnect()