#ifndef __PHY_FIXED_H #define __PHY_FIXED_H struct fixed_phy_status { int link; int speed; int duplex; int pause; int asym_pause; }; #ifdef CONFIG_FIXED_PHY extern int fixed_phy_add(unsigned int irq, int phy_id, struct fixed_phy_status *status); #else static inline int fixed_phy_add(unsigned int irq, int phy_id, struct fixed_phy_status *status) { return -ENODEV; } #endif /* CONFIG_FIXED_PHY */ /* * This function issued only by fixed_phy-aware drivers, no need * protect it with #ifdef */ extern int fixed_phy_set_link_update(struct phy_device *phydev, int (*link_update)(struct net_device *, struct fixed_phy_status *)); #endif /* __PHY_FIXED_H */ ut type='hidden' name='id' value='91bd2855edbc6a941bf0b16990fbf2894c41c388'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/w1/w1.c
AgeCommit message (Expand)Author
2017-04-08w1: Remove unneeded use of assert() and remove w1_log.hAndrew F. Davis
2017-01-25w1: Fixup source file headersAndrew F. Davis
2017-01-25w1: don't leak refcount on slave attach failure in w1_attach_slave_device()Maciej S. Szmigiero
2016-08-31w1: fix timeout_us parameter descriptionWei Yongjun
2016-05-01w1: silence an uninitialized variable warningDan Carpenter
2016-02-11w1: w1_process() is not freezable kthreadJiri Kosina
2015-05-24w1: introduce an ability to specify microseconds bus scanning intervalsDmitry Khromov
2014-11-26w1: support auto-load of w1_bq27000 module.NeilBrown
2014-06-19w1: use pr_* instead of printkFjodor Schelichow
2014-05-27w1: do not unlock unheld list_mutex in __w1_remove_master_device()Alexey Khoroshilov
2014-04-16w1: avoid recursive device_addDavid Fries
2014-02-15w1: small type cleanup in sysfsDan Carpenter
2014-02-07w1: format for DocBook and fixesDavid Fries
2014-02-07w1: process w1 netlink commands in w1_process threadDavid Fries
2014-02-07w1: new netlink commands, add/remove/list slavesDavid Fries
2014-02-07w1: continue slave search where previous left offDavid Fries
2014-02-07w1: increase w1_max_slave_count, allow write accessDavid Fries
2014-02-07w1: Only wake up the search process if it is going to be searchingDavid Fries
2014-02-07w1: fixup search to support abort from netlinkDavid Fries
2013-11-13drivers: w1: make w1_slave::flags long to avoid memory corruptionMichal Nazarewicz
2013-10-07w1 - call request_module with w1 master mutex unlockedHans-Frieder Vogt
2013-10-07w1 - fix fops in w1_bus_notifyHans-Frieder Vogt
2013-09-11drivers/w1/w1.c: replace strict_strtol() with kstrtol()Jingoo Han
2013-08-22w1: add attribute groups to struct w1_family_opsGreg Kroah-Hartman
2013-08-22w1: use default attribute groups for w1 slave devicesGreg Kroah-Hartman
2013-08-22w1: remove race with sysfs file creationGreg Kroah-Hartman
2013-06-03w1: add family based automatic module loadingAlexander Stein
2013-03-12w1: fix oops when w1_search is called from netlink connectorMarcin Jurkowski
2012-11-21w1: remove CONFIG_HOTPLUG ifdefsBill Pemberton
2012-06-13W1: split master mutex to avoid deadlocks.NeilBrown
2012-06-13Revert "w1: introduce a slave mutex for serializing IO"Greg Kroah-Hartman
2012-06-12w1: cleanup w1_ueventDevendra Naga
2012-06-12w1: introduce a slave mutex for serializing IONeilBrown
2012-04-09w1: fix slave driver registration error messageDmitry Artamonow