/* * metronomefb.h - definitions for the metronome framebuffer driver * * Copyright (C) 2008 by Jaya Kumar * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of this archive for * more details. * */ #ifndef _LINUX_METRONOMEFB_H_ #define _LINUX_METRONOMEFB_H_ /* command structure used by metronome controller */ struct metromem_cmd { … }; /* struct used by metronome. board specific stuff comes from *board */ struct metronomefb_par { … }; /* board specific routines and data */ struct metronome_board { … }; #endif