/*1* Linux driver for TerraTec DMX 6Fire USB2*3* Author: Torsten Schenk4* Created: Jan 01, 20115* Copyright: (C) Torsten Schenk6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License as published by9* the Free Software Foundation; either version 2 of the License, or10* (at your option) any later version.11*/1213#ifndef USB6FIRE_FIRMWARE_H14#define USB6FIRE_FIRMWARE_H1516#include "common.h"1718enum /* firmware state of device */19{20FW_READY = 0,21FW_NOT_READY = 122};2324int __devinit usb6fire_fw_init(struct usb_interface *intf);25#endif /* USB6FIRE_FIRMWARE_H */26272829