summaryrefslogtreecommitdiffstats
path: root/drivers/net/mii.c
Commit message (Expand)AuthorAgeFilesLines
* net/{mii, smsc}: Make mii_ethtool_get_link_ksettings and smc_netdev_get_ecmd ...yuval.shaia@oracle.com2017-06-051-6/+2Star
* net: mii: report 0 for unknown lp_advertisingArnd Bergmann2016-11-101-0/+2
* net: mii: add generic function to support ksetting supportPhilippe Reynes2016-11-021-0/+195
* mii: Handle link state changes for forced modes in mii_check_media()Ben Hutchings2015-01-191-5/+7
* ethtool, mdio, mii: Specify MDIO information fields in struct ethtool_cmdBen Hutchings2012-03-011-2/+2
* net: Change mii to ethtool advertisement function namesMatt Carlson2011-11-211-8/+7Star
* net: Add ethtool to mii advertisment conversion helpersMatt Carlson2011-11-171-38/+10Star
* Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/ne...David S. Miller2011-05-051-0/+4
|\
| * mii: add support of pause frames in mii_get_anartpol2011-04-291-0/+4
* | ethtool: cosmetic: Use ethtool ethtool_cmd_speed APIDavid Decotigny2011-04-291-6/+9
* | ethtool: Use full 32 bit speed range in ethtool's set_settingsDavid Decotigny2011-04-291-6/+7
* | ethtool: Call ethtool's get/set_settings callbacks with cleaned dataDavid Decotigny2011-04-291-0/+3
|/
* mii: Convert printks to netdev_infoJoe Perches2011-03-031-7/+7
* netdev: Remove redundant checks for CAP_NET_ADMIN in MDIO implementationsBen Hutchings2009-09-041-3/+0Star
* mii: Rewrite mii_ethtool_gset() to report mdio_support and lp_advertisingBen Hutchings2009-04-301-34/+57
* mii: add kernel-doc notationRandy Dunlap2007-04-281-0/+57
* drivers/net: Trim trailing whitespaceJeff Garzik2006-09-131-9/+9
* [PATCH] mii: Add test for GigE supportDale Farnsworth2005-09-141-0/+15
* Linux-2.6.12-rc2Linus Torvalds2005-04-171-0/+398
tle='2019-05-23 03:46:15 +0200'>2019-05-231-1/+1 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 9cc342f6c4a0 ("treewide: prefix header search paths with $(srctree)/") caused a build error for MIPS VDSO. CC arch/mips/vdso/gettimeofday.o In file included from ../arch/mips/vdso/vdso.h:26, from ../arch/mips/vdso/gettimeofday.c:11: ../arch/mips/include/asm/page.h:12:10: fatal error: spaces.h: No such file or directory #include <spaces.h> ^~~~~~~~~~ The cause of the error is a missing space after the compiler flag -I . Kbuild used to have a global restriction "no space after -I", but commit 48f6e3cf5bc6 ("kbuild: do not drop -I without parameter") got rid of it. Having a space after -I is no longer a big deal as far as Kbuild is concerned. It is still a big deal for MIPS because arch/mips/vdso/Makefile filters the header search paths, like this: ccflags-vdso := \ $(filter -I%,$(KBUILD_CFLAGS)) \ ..., which relies on the assumption that there is no space after -I . Fixes: 9cc342f6c4a0 ("treewide: prefix header search paths with $(srctree)/") Reported-by: kbuild test robot <lkp@intel.com> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Paul Burton <paul.burton@mips.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: James Hogan <jhogan@kernel.org> Cc: linux-mips@vger.kernel.org Cc: linux-kernel@vger.kernel.org | * | | MIPS: mark ginvt() as __always_inlineMasahiro Yamada2019-05-231-1/+1 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To meet the 'i' (immediate) constraint for the asm operands, this function must be always inlined. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Paul Burton <paul.burton@mips.com> Cc: linux-mips@vger.kernel.org Cc: Ralf Baechle <ralf@linux-mips.org> Cc: James Hogan <jhogan@kernel.org> Cc: linux-kernel@vger.kernel.org * | | | Merge tag 'spdx-5.2-rc4' of ↵Linus Torvalds2019-06-08