national.c (5a2dd72abdae75ea2960145e0549635ce4e0be96) | national.c (4e4f10f6498bc5038c0a110b5f21682fcb5578d7) |
---|---|
1/* 2 * drivers/net/phy/national.c 3 * 4 * Driver for National Semiconductor PHYs 5 * 6 * Author: Stuart Menefy <stuart.menefy@st.com> 7 * Maintainer: Giuseppe Cavallaro <peppe.cavallaro@st.com> 8 * --- 139 unchanged lines hidden (view full) --- 148} 149 150MODULE_DESCRIPTION("NatSemi PHY driver"); 151MODULE_AUTHOR("Stuart Menefy"); 152MODULE_LICENSE("GPL"); 153 154module_init(ns_init); 155module_exit(ns_exit); | 1/* 2 * drivers/net/phy/national.c 3 * 4 * Driver for National Semiconductor PHYs 5 * 6 * Author: Stuart Menefy <stuart.menefy@st.com> 7 * Maintainer: Giuseppe Cavallaro <peppe.cavallaro@st.com> 8 * --- 139 unchanged lines hidden (view full) --- 148} 149 150MODULE_DESCRIPTION("NatSemi PHY driver"); 151MODULE_AUTHOR("Stuart Menefy"); 152MODULE_LICENSE("GPL"); 153 154module_init(ns_init); 155module_exit(ns_exit); |
156 157static struct mdio_device_id ns_tbl[] = { 158 { DP83865_PHY_ID, 0xfffffff0 }, 159 { } 160}; 161 162MODULE_DEVICE_TABLE(mdio, ns_tbl); |
|