Deleted Added
full compact
35c35
< __FBSDID("$FreeBSD: head/sys/dev/lge/if_lge.c 148654 2005-08-03 00:18:35Z rwatson $");
---
> __FBSDID("$FreeBSD: head/sys/dev/lge/if_lge.c 148887 2005-08-09 10:20:02Z rwatson $");
989c989
< ifp->if_flags &= ~IFF_RUNNING;
---
> ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
1037c1037
< ifp->if_flags &= ~IFF_OACTIVE;
---
> ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
1207c1207
< if (ifp->if_flags & IFF_OACTIVE)
---
> if (ifp->if_drv_flags & IFF_DRV_OACTIVE)
1220c1220
< ifp->if_flags |= IFF_OACTIVE;
---
> ifp->if_drv_flags |= IFF_DRV_OACTIVE;
1250c1250
< if (ifp->if_flags & IFF_RUNNING)
---
> if (ifp->if_drv_flags & IFF_DRV_RUNNING)
1366,1367c1366,1367
< ifp->if_flags |= IFF_RUNNING;
< ifp->if_flags &= ~IFF_OACTIVE;
---
> ifp->if_drv_flags |= IFF_DRV_RUNNING;
> ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
1444c1444
< if (ifp->if_flags & IFF_RUNNING &&
---
> if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
1450c1450
< } else if (ifp->if_flags & IFF_RUNNING &&
---
> } else if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
1456c1456
< ifp->if_flags &= ~IFF_RUNNING;
---
> ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
1460c1460
< if (ifp->if_flags & IFF_RUNNING)
---
> if (ifp->if_drv_flags & IFF_DRV_RUNNING)
1499c1499
< ifp->if_flags &= ~IFF_RUNNING;
---
> ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
1553c1553
< ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
---
> ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);