sm8350-common: udfps: s/hander/handler

Change-Id: I49726102bf33d54a29f2aae1bea707c9a55694b2
This commit is contained in:
Sebastiano Barezzi 2022-09-28 23:32:26 +02:00 committed by FlowerSea0208
parent c5cb0e5f61
commit 7609be9cd2

View File

@ -60,7 +60,7 @@ static bool readBool(int fd) {
return c != '0';
}
class XiaomiUdfpsHander : public UdfpsHandler {
class XiaomiUdfpsHandler : public UdfpsHandler {
public:
void init(fingerprint_device_t* device) {
mDevice = device;
@ -140,7 +140,7 @@ class XiaomiUdfpsHander : public UdfpsHandler {
};
static UdfpsHandler* create() {
return new XiaomiUdfpsHander();
return new XiaomiUdfpsHandler();
}
static void destroy(UdfpsHandler* handler) {