qsemi.c (5a0e3ad6af8660be21ca98a971cd00f331318c05) | qsemi.c (4e4f10f6498bc5038c0a110b5f21682fcb5578d7) |
---|---|
1/* 2 * drivers/net/phy/qsemi.c 3 * 4 * Driver for Quality Semiconductor PHYs 5 * 6 * Author: Andy Fleming 7 * 8 * Copyright (c) 2004 Freescale Semiconductor, Inc. 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/qsemi.c 3 * 4 * Driver for Quality Semiconductor PHYs 5 * 6 * Author: Andy Fleming 7 * 8 * Copyright (c) 2004 Freescale Semiconductor, Inc. 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> --- 104 unchanged lines hidden (view full) --- 132 133static void __exit qs6612_exit(void) 134{ 135 phy_driver_unregister(&qs6612_driver); 136} 137 138module_init(qs6612_init); 139module_exit(qs6612_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> --- 104 unchanged lines hidden (view full) --- 133 134static void __exit qs6612_exit(void) 135{ 136 phy_driver_unregister(&qs6612_driver); 137} 138 139module_init(qs6612_init); 140module_exit(qs6612_exit); |
141 142static struct mdio_device_id qs6612_tbl[] = { 143 { 0x00181440, 0xfffffff0 }, 144 { } 145}; 146 147MODULE_DEVICE_TABLE(mdio, qs6612_tbl); |
|