mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-04 22:10:49 +00:00
Via coccinelle: @r_device_driver_api_and_data_1@ struct device *D; @@ ( D-> - driver_api + api | D-> - driver_data + data ) @r_device_driver_api_and_data_2@ expression E; @@ ( net_if_get_device(E)-> - driver_api + api | net_if_get_device(E)-> - driver_data + data ) And grep/sed rules for macros: git grep -rlz 'dev)->driver_data' | xargs -0 sed -i 's/dev)->driver_data/dev)->data/g' git grep -rlz 'dev->driver_data' | xargs -0 sed -i 's/dev->driver_data/dev->data/g' git grep -rlz 'device->driver_data' | xargs -0 sed -i 's/device->driver_data/device->data/g' Fixes #27397 Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
24 lines
498 B
C
24 lines
498 B
C
/*
|
|
* Copyright (c) 2019 Intel Corp.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_INCLUDE_DISPLAY_FRAMEBUF_H_
|
|
#define ZEPHYR_INCLUDE_DISPLAY_FRAMEBUF_H_
|
|
|
|
#include <drivers/display.h>
|
|
|
|
extern const struct display_driver_api framebuf_display_api;
|
|
|
|
struct framebuf_dev_data {
|
|
void *buffer;
|
|
uint32_t pitch;
|
|
uint16_t width;
|
|
uint16_t height;
|
|
};
|
|
|
|
#define FRAMEBUF_DATA(dev) ((struct framebuf_dev_data *) ((dev)->data))
|
|
|
|
#endif /* ZEPHYR_INCLUDE_DISPLAY_FRAMEBUF_H_ */
|