validity: remove MR noise

This commit is contained in:
Leonardo Francisco 2026-04-12 23:35:57 -04:00 committed by lewohart
parent 78fcfd3cd4
commit 162d66d7a4
2 changed files with 1 additions and 3 deletions

1
.gitignore vendored
View file

@ -1,4 +1,3 @@
*.o
*.swp
_build
__pycache__

View file

@ -272,14 +272,13 @@ static void
fpc_cmd_ssm_done (FpiSsm *ssm, FpDevice *dev, GError *error)
{
FpiDeviceFpcMoc *self = FPI_DEVICE_FPCMOC (dev);
CommandData *data = NULL;
CommandData *data = fpi_ssm_get_data (ssm);
self->cmd_ssm = NULL;
/* Notify about the SSM failure from here instead. */
if (error)
{
fp_err ("%s error: %s ", G_STRFUNC, error->message);
data = fpi_ssm_get_data (ssm);
if (data->callback)
data->callback (self, NULL, error);
}