Subversion Repositories HelenOS-historic

Rev

Rev 1648 | Rev 1668 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1648 Rev 1649
Line 25... Line 25...
25
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 */
28
 */
29
 
29
 
-
 
30
/** @defgroup fbs Framebuffers
-
 
31
 * @brief   HelenOS framebuffers.
-
 
32
 * @{
-
 
33
 * @}
-
 
34
 */
-
 
35
/** @defgroup fb Framebuffer
-
 
36
 * @brief   HelenOS framebuffer.
-
 
37
 * @ingroup fbs
-
 
38
 * @{
-
 
39
 */
-
 
40
/** @file
-
 
41
 */
-
 
42
 
-
 
43
 
30
#include <stdlib.h>
44
#include <stdlib.h>
31
#include <unistd.h>
45
#include <unistd.h>
32
#include <string.h>
46
#include <string.h>
33
#include <ddi.h>
47
#include <ddi.h>
34
#include <sysinfo.h>
48
#include <sysinfo.h>
Line 1052... Line 1066...
1052
    screen_init(fb_addr, fb_width, fb_height, fb_bpp, fb_scanline);
1066
    screen_init(fb_addr, fb_width, fb_height, fb_bpp, fb_scanline);
1053
 
1067
 
1054
    return 0;
1068
    return 0;
1055
}
1069
}
1056
 
1070
 
-
 
1071
 
-
 
1072
/**
-
 
1073
 * @}
-
 
1074
 */