dm: treewide: Rename 'platdata' variables to just 'plat'
We use 'priv' for private data but often use 'platdata' for platform data. We can't really use 'pdata' since that is ambiguous (it could mean private or platform data). Rename some of the latter variables to end with 'plat' for consistency. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -231,6 +231,6 @@ U_BOOT_DRIVER(sandbox_i2c_rtc_emul) = {
|
||||
.of_match = sandbox_i2c_rtc_ids,
|
||||
.bind = sandbox_i2c_rtc_bind,
|
||||
.priv_auto = sizeof(struct sandbox_i2c_rtc),
|
||||
.platdata_auto = sizeof(struct sandbox_i2c_rtc_plat_data),
|
||||
.plat_auto = sizeof(struct sandbox_i2c_rtc_plat_data),
|
||||
.ops = &sandbox_i2c_rtc_emul_ops,
|
||||
};
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
static int pcf2127_rtc_read(struct udevice *dev, uint offset, u8 *buffer, uint len)
|
||||
{
|
||||
struct dm_i2c_chip *chip = dev_get_parent_platdata(dev);
|
||||
struct dm_i2c_chip *chip = dev_get_parent_plat(dev);
|
||||
struct i2c_msg msg;
|
||||
int ret;
|
||||
|
||||
|
||||
@@ -137,6 +137,6 @@ U_BOOT_DRIVER(rtc_pl031) = {
|
||||
.of_match = pl031_ids,
|
||||
.probe = pl031_probe,
|
||||
.ofdata_to_platdata = pl031_ofdata_to_platdata,
|
||||
.platdata_auto = sizeof(struct pl031_platdata),
|
||||
.plat_auto = sizeof(struct pl031_platdata),
|
||||
.ops = &pl031_ops,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user