#include "xyarray.h" #include "util.h" struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size) { size_t row_size = ylen * entry_size; struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size); if (xy != NULL) { xy->entry_size = entry_size; xy->row_size = row_size; xy->entries = xlen * ylen; } return xy; } void xyarray__reset(struct xyarray *xy) { size_t n = xy->entries * xy->entry_size; memset(xy->contents, 0, n); } void xyarray__delete(struct xyarray *xy) { free(xy); } title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
path: root/sound/usb/helper.h
>space:
AgeCommit message (Expand)AuthorFilesLines
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-08-01 07:32:32 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2016-08-01 07:32:32 -0400
commit7a66ecfd319af8fe4f4c3eadf019b998c93d6687 (patch)
tree8348e0748e0f7e8c4cf16dd0d39f16fa617542cf
parent06e23d51151fd06c225c80ace26675532bdf406d (diff)
parent602553073892c18f723f8aa090153a23b1312a16 (diff)
Merge tag 'backlight-for-linus-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight
Pull backlight updates from Lee Jones: "Add support for an enable regulator to lp855x_bl" * tag 'backlight-for-linus-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight: backlight: lp855x: Add enable regulator
Diffstat