summaryrefslogtreecommitdiff
path: root/drivers/dahdi/ap400/ap400_drv.c
AgeCommit message (Collapse)Author
2010-09-12ap400: some simple sparse fixesTzafrir Cohen
* Use C99-style initializations. The default value of a field is 0/NULL. * Statify some functions.
2010-09-12ap400: remove an unused variableTzafrir Cohen
2010-09-12ap400: move span callbacs to a separate structureTzafrir Cohen
r8985 and r8986 moved most of the span operation callbacks from the dahdi_span itself to a separate struct. That struct is allocated statically by the driver.
2010-09-12ap400: remove 'pvt' member of dahdi_spanTzafrir Cohen
r8984 removed the member 'pvt' of struct dahdi_span in dahdi/kernel.h . No use to have a pointer to a struct that is already embedded in our struct. Thus we remove a single usage of it and replace it with container_of().
2010-09-12initial ap400 driverTzafrir Cohen