commit | ef560e0a5329d757ec8cfd7d07d7692decf2864f | [log] [tgz] |
---|---|---|
author | Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com> | Tue Jul 14 17:02:00 2020 +0200 |
committer | Carles CufĂ <carles.cufi@nordicsemi.no> | Wed Sep 02 13:48:13 2020 +0200 |
tree | c1ccf62242849123a94cdc13bc2acfe0907746ee | |
parent | 26cbd6a58c8346e21cee6efa3c0f7a29457afc92 [diff] |
drivers: Manual const-ification of device driver instance These are all the case that coccinelle cannot find as they are inside macro declarations. Fixed via: git grep -rlz -E "\(struct device \*" | xargs -0 sed -i 's/(struct device/(const struct device/g' Fixes #27399 Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>