// SPDX-License-Identifier: GPL-2.0-or-later #include #include #include "hd44780_common.h" struct hd44780_common *hd44780_common_alloc(void) { struct hd44780_common *hd; hd = kzalloc(sizeof(*hd), GFP_KERNEL); if (!hd) return NULL; hd->bwidth = DEFAULT_LCD_BWIDTH; hd->hwidth = DEFAULT_LCD_HWIDTH; return hd; } EXPORT_SYMBOL_GPL(hd44780_common_alloc); MODULE_LICENSE("GPL");