Graphic driver not working

I am using Fedora 39 Gnome with my new laptop. I have no way of adjusting the brightness. It also does not work via the key combination. I assume that the error is related to the graphics card driver as this is apparently not installed correctly, because it shows n/a. I already did an upgrade and also the kernel seems to be the newest. Does someone know the cause of the problem?

here is some output of
inxi -bz

System:
  Kernel: 6.8.7-200.fc39.x86_64 arch: x86_64 bits: 64
  Desktop: GNOME v: 45.5 Distro: Fedora Linux 39 (Workstation Edition)
Machine:
  Type: Laptop System: Wortmann_AG product: 1220801;1470426 v: 1470U;1470426
    serial: <superuser required>
  Mobo: Clevo model: L141PU serial: <superuser required> UEFI: INSYDE
    v: 1.07.09TWO date: 04/27/2023
CPU:
  Info: 10-core (2-mt/8-st) 12th Gen Intel Core i5-1235U [MST AMCP]
    speed (MHz): avg: 972 min/max: 400/4400:3300
Graphics:
  Device-1: Intel Alder Lake-UP3 GT2 [Iris Xe Graphics] driver: N/A
  Device-2: Chicony USB2.0 Camera driver: uvcvideo type: USB
  Display: wayland server: X.Org v: 23.2.6 with: Xwayland v: 23.2.6
    compositor: gnome-shell driver: dri: swrast gpu: N/A
    resolution: 1920x1080~60Hz
  API: OpenGL v: 4.5 vendor: mesa v: 23.3.6 renderer: llvmpipe (LLVM 17.0.6
    256 bits)

and here is some output of
lspci -k | grep -A 2 -i "VGA"

00:02.0 VGA compatible controller: Intel Corporation Alder Lake-UP3 GT2 [Iris Xe Graphics] (rev 0c)
	Subsystem: CLEVO/KAPOK Computer Device 7718
	Kernel modules: i915, xe

fixed it by changing /etc/default/grub

GRUB_CMDLINE_LINUX="nomodeset rhgb quiet module_blacklist=hid_sensor_hub"

to

GRUB_CMDLINE_LINUX="rhgb quiet module_blacklist=hid_sensor_hub"

and after saving, i entered

sudo grub2-mkconfig -o /boot/grub2/grub.cfg

and did a reboot.

Thanks to Claude AI.