Give a hint that softc can contain many things besides ifp.

This commit is contained in:
Yaroslav Tykhiy 2007-03-26 09:05:10 +00:00
parent 20d9e5e87c
commit 6ca7917e8f

View file

@ -56,6 +56,11 @@
*/
struct edsc_softc {
struct ifnet *sc_ifp; /* ptr to generic interface configuration */
/*
* A non-null driver can keep various things here, for instance,
* the hardware revision, cached values of write-only registers, etc.
*/
};
/*