et1011c.c (5a0e3ad6af8660be21ca98a971cd00f331318c05) | et1011c.c (4e4f10f6498bc5038c0a110b5f21682fcb5578d7) |
---|---|
1/* 2 * drivers/net/phy/et1011c.c 3 * 4 * Driver for LSI ET1011C PHYs 5 * 6 * Author: Chaithrika U S 7 * 8 * Copyright (c) 2008 Texas Instruments 9 * 10 * This program is free software; you can redistribute it and/or modify it 11 * under the terms of the GNU General Public License as published by the 12 * Free Software Foundation; either version 2 of the License, or (at your 13 * option) any later version. 14 * 15 */ 16#include <linux/kernel.h> 17#include <linux/string.h> 18#include <linux/errno.h> 19#include <linux/unistd.h> | 1/* 2 * drivers/net/phy/et1011c.c 3 * 4 * Driver for LSI ET1011C PHYs 5 * 6 * Author: Chaithrika U S 7 * 8 * Copyright (c) 2008 Texas Instruments 9 * 10 * This program is free software; you can redistribute it and/or modify it 11 * under the terms of the GNU General Public License as published by the 12 * Free Software Foundation; either version 2 of the License, or (at your 13 * option) any later version. 14 * 15 */ 16#include <linux/kernel.h> 17#include <linux/string.h> 18#include <linux/errno.h> 19#include <linux/unistd.h> |
20#include <linux/slab.h> |
|
20#include <linux/interrupt.h> 21#include <linux/init.h> 22#include <linux/delay.h> 23#include <linux/netdevice.h> 24#include <linux/etherdevice.h> 25#include <linux/skbuff.h> 26#include <linux/spinlock.h> 27#include <linux/mm.h> --- 77 unchanged lines hidden (view full) --- 105 106static void __exit et1011c_exit(void) 107{ 108 phy_driver_unregister(&et1011c_driver); 109} 110 111module_init(et1011c_init); 112module_exit(et1011c_exit); | 21#include <linux/interrupt.h> 22#include <linux/init.h> 23#include <linux/delay.h> 24#include <linux/netdevice.h> 25#include <linux/etherdevice.h> 26#include <linux/skbuff.h> 27#include <linux/spinlock.h> 28#include <linux/mm.h> --- 77 unchanged lines hidden (view full) --- 106 107static void __exit et1011c_exit(void) 108{ 109 phy_driver_unregister(&et1011c_driver); 110} 111 112module_init(et1011c_init); 113module_exit(et1011c_exit); |
114 115static struct mdio_device_id et1011c_tbl[] = { 116 { 0x0282f014, 0xfffffff0 }, 117 { } 118}; 119 120MODULE_DEVICE_TABLE(mdio, et1011c_tbl); |
|