Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Every device driver’s net_dev.c

Prototype

Code Block

          static void NetDev_AddrMulticastRemove (NET_IF     *pif,
                                                  CPU_INT08U *paddr_hw,
                                                  CPU_INT08U  addr_hw_len,
                                                  NET_ERR    *perr);

Note that since every device driver’s AddrMulticastRemove() function is accessed only by function pointer via the device driver’s API structure, it doesn’t need to be globally available and should therefore be declared as ‘static’.

...