libfprint/cocci/04-misc-renames.cocci
Benjamin Berg 6ec11a2b26 cocci: Add spatch/coccinelle patches for driver porting
This is an impartial set of transformations to help port the drivers to
the new interfaces.
2019-11-20 13:53:45 +01:00

30 lines
377 B
Plaintext

@@
typedef FpImageDeviceState;
@@
(
-FP_IMG_COLORS_INVERTED
+FP_IMAGE_COLORS_INVERTED
|
-FP_IMG_H_FLIPPED
+FP_IMAGE_H_FLIPPED
|
-FP_IMG_V_FLIPPED
+FP_IMAGE_V_FLIPPED
|
-FP_VERIFY_RETRY_TOO_SHORT
+FP_DEVICE_RETRY_TOO_SHORT
|
-FP_VERIFY_RETRY_CENTER_FINGER
+FP_DEVICE_RETRY_CENTER_FINGER
|
-FP_VERIFY_RETRY
+FP_DEVICE_RETRY
)
@@
@@
(
-enum fp_imgdev_state
+FpImageDeviceState
)