Reputation: 181
i have PCI
device driver where it has used PTR_ALIGN
but don't understand its usage. So can some one explain me why PTR_ALIGN
used or any reference to it which i can follow.
Thanks rabi
Upvotes: 2
Views: 877
Reputation: 745
PTR_ALIGN is used to align the pointer, as unsigned long variable.
In this case, I think it is best to look on the implementation in Kernel - See http://lxr.free-electrons.com/source/include/linux/kernel.h#L51 for example, don't forget to use the correct Kernel version.
Upvotes: 3