device: Apply driver_api/data attributes rename everywhere
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>
This commit is contained in:
parent
d86f79cbd7
commit
98d9b01322
498 changed files with 2085 additions and 2087 deletions
|
@ -138,7 +138,7 @@ static const struct flash_parameters flash_mcux_parameters = {
|
|||
|
||||
static int flash_mcux_erase(struct device *dev, off_t offset, size_t len)
|
||||
{
|
||||
struct flash_priv *priv = dev->driver_data;
|
||||
struct flash_priv *priv = dev->data;
|
||||
uint32_t addr;
|
||||
status_t rc;
|
||||
unsigned int key;
|
||||
|
@ -172,7 +172,7 @@ static int flash_mcux_erase(struct device *dev, off_t offset, size_t len)
|
|||
static int flash_mcux_read(struct device *dev, off_t offset,
|
||||
void *data, size_t len)
|
||||
{
|
||||
struct flash_priv *priv = dev->driver_data;
|
||||
struct flash_priv *priv = dev->data;
|
||||
uint32_t addr;
|
||||
status_t rc = 0;
|
||||
|
||||
|
@ -203,7 +203,7 @@ static int flash_mcux_read(struct device *dev, off_t offset,
|
|||
static int flash_mcux_write(struct device *dev, off_t offset,
|
||||
const void *data, size_t len)
|
||||
{
|
||||
struct flash_priv *priv = dev->driver_data;
|
||||
struct flash_priv *priv = dev->data;
|
||||
uint32_t addr;
|
||||
status_t rc;
|
||||
unsigned int key;
|
||||
|
@ -225,7 +225,7 @@ static int flash_mcux_write(struct device *dev, off_t offset,
|
|||
|
||||
static int flash_mcux_write_protection(struct device *dev, bool enable)
|
||||
{
|
||||
struct flash_priv *priv = dev->driver_data;
|
||||
struct flash_priv *priv = dev->data;
|
||||
int rc = 0;
|
||||
|
||||
if (enable) {
|
||||
|
@ -276,7 +276,7 @@ static const struct flash_driver_api flash_mcux_api = {
|
|||
|
||||
static int flash_mcux_init(struct device *dev)
|
||||
{
|
||||
struct flash_priv *priv = dev->driver_data;
|
||||
struct flash_priv *priv = dev->data;
|
||||
uint32_t pflash_block_base;
|
||||
status_t rc;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue