Hi Chris, > static int fsi_master_break(struct fsi_master *master, int link) > { > int rc = 0; > > if (master->break) > master->break(master, link) Sorry, that should be: rc = master->break(master, link); Cheers, Jeremy