s/destory/destroy/ (except for the code in contrib/).
This commit is contained in:
parent
33ebe8ecb6
commit
2ee778fb99
@ -113,6 +113,6 @@ void ex_stop(struct ex_softc *);
|
||||
#define EX_LOCK_INIT(_sc) \
|
||||
mtx_init(&_sc->sc_mtx, device_get_nameunit(_sc->dev), \
|
||||
MTX_NETWORK_LOCK, MTX_DEF)
|
||||
#define EX_LOCK_DESTORY(_sc) mtx_destroy(&_sc->sc_mtx);
|
||||
#define EX_LOCK_DESTROY(_sc) mtx_destroy(&_sc->sc_mtx);
|
||||
#define EX_ASSERT_LOCKED(_sc) mtx_assert(&_sc->sc_mtx, MA_OWNED);
|
||||
#define EX_ASSERT_UNLOCKED(_sc) mtx_assert(&_sc->sc_mtx, MA_NOTOWNED);
|
||||
|
@ -104,7 +104,7 @@ fwdma_malloc(struct firewire_comm *fc, int alignment, bus_size_t size,
|
||||
flag, &dma->dma_map);
|
||||
if (err) {
|
||||
printf("fwdma_malloc: failed(2)\n");
|
||||
/* XXX destory tag */
|
||||
/* XXX destroy tag */
|
||||
return(NULL);
|
||||
}
|
||||
|
||||
|
@ -74,7 +74,7 @@ struct natmpcb {
|
||||
#define NPCB_FREE 0x01 /* free (not on any list) */
|
||||
#define NPCB_CONNECTED 0x02 /* connected */
|
||||
#define NPCB_IP 0x04 /* used by IP */
|
||||
#define NPCB_DRAIN 0x08 /* destory as soon as inq == 0 */
|
||||
#define NPCB_DRAIN 0x08 /* destroy as soon as inq == 0 */
|
||||
|
||||
/* flag arg to npcb_free */
|
||||
#define NPCB_REMOVE 0 /* remove from global list */
|
||||
|
@ -63,7 +63,7 @@ index.
|
||||
will attempt to create a bridge interface with the name given by the table
|
||||
index and set the status of the interface to "active/up".
|
||||
.It Va destroy
|
||||
will attempt to destory the bridge interface.
|
||||
will attempt to destroy the bridge interface.
|
||||
.El
|
||||
.It Va begemotBridgeBaseSpanEnabled
|
||||
A SNMP SET operation on this object is only successfull if the corresponding
|
||||
|
Loading…
x
Reference in New Issue
Block a user