diff options
| author | Pedro F. Giffuni <pfg@FreeBSD.org> | 2016-05-03 03:41:25 +0000 |
|---|---|---|
| committer | Pedro F. Giffuni <pfg@FreeBSD.org> | 2016-05-03 03:41:25 +0000 |
| commit | 453130d9bfc1c6d68b366dfcb041689d69f81295 (patch) | |
| tree | fe36ef227324b313676d43aef9a4d97c9a09675a /sys/dev/sf | |
| parent | 7860c0c3843dbb1cf8f4f2c20ee526e8dd2661da (diff) | |
Notes
Diffstat (limited to 'sys/dev/sf')
| -rw-r--r-- | sys/dev/sf/if_sf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c index bd685f132a3f..2d0df0ffa5d8 100644 --- a/sys/dev/sf/if_sf.c +++ b/sys/dev/sf/if_sf.c @@ -720,7 +720,7 @@ sf_probe(device_t dev) } if (vid == AD_VENDORID && did == AD_DEVICEID_STARFIRE) { - /* unkown subdevice */ + /* unknown subdevice */ device_set_desc(dev, sf_devs[0].sf_name); return (BUS_PROBE_DEFAULT); } @@ -1515,7 +1515,7 @@ sf_fixup_rx(struct mbuf *m) * it is marred by one truly stupid design flaw, which is that receive * buffer addresses must be aligned on a longword boundary. This forces * the packet payload to be unaligned, which is suboptimal on the x86 and - * completely unuseable on the Alpha. Our only recourse is to copy received + * completely unusable on the Alpha. Our only recourse is to copy received * packets into properly aligned buffers before handing them off. */ static int |
